pub struct SkipListSimple {
pub entries: Vec<i64>,
pub max_level: usize,
}Fields§
§entries: Vec<i64>§max_level: usizeAuto Trait Implementations§
impl Freeze for SkipListSimple
impl RefUnwindSafe for SkipListSimple
impl Send for SkipListSimple
impl Sync for SkipListSimple
impl Unpin for SkipListSimple
impl UnsafeUnpin for SkipListSimple
impl UnwindSafe for SkipListSimple
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