#[repr(C)]pub struct Queue {
pub entries: *mut cc_uint8,
pub structSize: c_int,
pub capacity: c_int,
pub mask: c_int,
pub count: c_int,
pub head: c_int,
pub tail: c_int,
}
Fields§
§entries: *mut cc_uint8
§structSize: c_int
§capacity: c_int
§mask: c_int
§count: c_int
§head: c_int
§tail: c_int
Trait Implementations§
impl Copy for Queue
impl Eq for Queue
impl StructuralPartialEq for Queue
Auto Trait Implementations§
impl Freeze for Queue
impl RefUnwindSafe for Queue
impl !Send for Queue
impl !Sync for Queue
impl Unpin for Queue
impl UnwindSafe for Queue
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