pub type aeron_broadcast_receiver_t = aeron_broadcast_receiver_stct;
Aliased Type§
struct aeron_broadcast_receiver_t {
pub scratch_buffer: [u8; 4096],
pub buffer: *mut u8,
pub descriptor: *mut aeron_broadcast_descriptor_stct,
pub capacity: usize,
pub mask: usize,
pub record_offset: usize,
pub cursor: i64,
pub next_record: i64,
pub lapped_count: i64,
}
Fields§
§scratch_buffer: [u8; 4096]
§buffer: *mut u8
§descriptor: *mut aeron_broadcast_descriptor_stct
§capacity: usize
§mask: usize
§record_offset: usize
§cursor: i64
§next_record: i64
§lapped_count: i64
Trait Implementations§
Source§impl From<AeronBroadcastReceiver> for aeron_broadcast_receiver_t
impl From<AeronBroadcastReceiver> for aeron_broadcast_receiver_t
Source§fn from(value: AeronBroadcastReceiver) -> Self
fn from(value: AeronBroadcastReceiver) -> Self
Converts to this type from the input type.
Source§impl Clone for aeron_broadcast_receiver_stct
impl Clone for aeron_broadcast_receiver_stct
Source§fn clone(&self) -> aeron_broadcast_receiver_stct
fn clone(&self) -> aeron_broadcast_receiver_stct
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Hash for aeron_broadcast_receiver_stct
impl Hash for aeron_broadcast_receiver_stct
Source§impl PartialEq for aeron_broadcast_receiver_stct
impl PartialEq for aeron_broadcast_receiver_stct
Source§fn eq(&self, other: &aeron_broadcast_receiver_stct) -> bool
fn eq(&self, other: &aeron_broadcast_receiver_stct) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.