#[repr(C)]pub struct roaring_array_s {
pub size: i32,
pub allocation_size: i32,
pub containers: *mut *mut c_void,
pub keys: *mut u16,
pub typecodes: *mut u8,
pub flags: u8,
}Expand description
Roaring arrays are array-based key-value pairs having containers as values and 16-bit integer keys. A roaring bitmap might be implemented as such.
Fields§
§size: i32§allocation_size: i32§containers: *mut *mut c_void§keys: *mut u16§typecodes: *mut u8§flags: u8Trait Implementations§
Source§impl Clone for roaring_array_s
impl Clone for roaring_array_s
Source§fn clone(&self) -> roaring_array_s
fn clone(&self) -> roaring_array_s
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 Debug for roaring_array_s
impl Debug for roaring_array_s
impl Copy for roaring_array_s
Auto Trait Implementations§
impl Freeze for roaring_array_s
impl RefUnwindSafe for roaring_array_s
impl !Send for roaring_array_s
impl !Sync for roaring_array_s
impl Unpin for roaring_array_s
impl UnwindSafe for roaring_array_s
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more