pub type aeron_deque_t = aeron_deque_stct;
Aliased Type§
struct aeron_deque_t {
pub data: *mut u8,
pub element_count: usize,
pub element_size: usize,
pub first_element: usize,
pub last_element: usize,
}
Fields§
§data: *mut u8
§element_count: usize
§element_size: usize
§first_element: usize
§last_element: usize
Trait Implementations§
Source§impl From<AeronDeque> for aeron_deque_t
impl From<AeronDeque> for aeron_deque_t
Source§fn from(value: AeronDeque) -> Self
fn from(value: AeronDeque) -> Self
Converts to this type from the input type.
Source§impl Clone for aeron_deque_stct
impl Clone for aeron_deque_stct
Source§fn clone(&self) -> aeron_deque_stct
fn clone(&self) -> aeron_deque_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 more