pub struct SliceInfo {
pub src: usize,
pub start: usize,
pub length: usize,
}Expand description
Information about the location of a BinPool slice in the backing data.
Fields§
§src: usizeIndex of the backing slice.
start: usizeStarting position in the backing slice.
length: usizeLength of the slice.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SliceInfo
impl RefUnwindSafe for SliceInfo
impl Send for SliceInfo
impl Sync for SliceInfo
impl Unpin for SliceInfo
impl UnwindSafe for SliceInfo
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