pub struct Next<'a, Strong, Weak> {
pub strong: &'a Strong,
pub weak: &'a Weak,
}Expand description
Borrowed access to a node’s successor slots.
Fields§
§strong: &'a Strong§weak: &'a WeakAuto Trait Implementations§
impl<'a, Strong, Weak> Freeze for Next<'a, Strong, Weak>
impl<'a, Strong, Weak> RefUnwindSafe for Next<'a, Strong, Weak>where
Strong: RefUnwindSafe,
Weak: RefUnwindSafe,
impl<'a, Strong, Weak> Send for Next<'a, Strong, Weak>
impl<'a, Strong, Weak> Sync for Next<'a, Strong, Weak>
impl<'a, Strong, Weak> Unpin for Next<'a, Strong, Weak>
impl<'a, Strong, Weak> UnwindSafe for Next<'a, Strong, Weak>where
Strong: RefUnwindSafe,
Weak: 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