#[repr(C)]pub struct Params {
pub keys: u32,
pub ptr: *const u8,
pub len: usize,
}Expand description
Parameters of insert
Fields§
§keys: u32Range of keys where to insert the fragments.
This is a pair of u16: the lowest u16 is the first key of the range and the highest u16 is one past the last key of the range.
ptr: *const u8Value of the entry.
len: usizeLength of the value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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