pub struct RawEntry<'a, T: Integer> {
pub node: &'a Node<T>,
pub parent: Box<[u8]>,
pub depth: usize,
pub ty: EntryType,
}Fields§
§node: &'a Node<T>§parent: Box<[u8]>§depth: usize§ty: EntryTypeTrait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for RawEntry<'a, T>
impl<'a, T> RefUnwindSafe for RawEntry<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for RawEntry<'a, T>where
T: Sync,
impl<'a, T> Sync for RawEntry<'a, T>where
T: Sync,
impl<'a, T> Unpin for RawEntry<'a, T>
impl<'a, T> UnsafeUnpin for RawEntry<'a, T>
impl<'a, T> UnwindSafe for RawEntry<'a, T>where
T: RefUnwindSafe,
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