pub enum Position<BorrowType, K, V> {
Leaf(NodeRef<BorrowType, K, V, Leaf>),
Internal(NodeRef<BorrowType, K, V, Internal>),
InternalKV(Handle<NodeRef<BorrowType, K, V, Internal>, KV>),
}
Variants§
Leaf(NodeRef<BorrowType, K, V, Leaf>)
Internal(NodeRef<BorrowType, K, V, Internal>)
InternalKV(Handle<NodeRef<BorrowType, K, V, Internal>, KV>)
Auto Trait Implementations§
impl<BorrowType, K, V> RefUnwindSafe for Position<BorrowType, K, V>where BorrowType: RefUnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,
impl<BorrowType, K, V> !Send for Position<BorrowType, K, V>
impl<BorrowType, K, V> Sync for Position<BorrowType, K, V>where K: Sync, V: Sync,
impl<BorrowType, K, V> Unpin for Position<BorrowType, K, V>where BorrowType: Unpin,
impl<BorrowType, K, V> UnwindSafe for Position<BorrowType, K, V>where BorrowType: UnwindSafe, K: RefUnwindSafe, V: 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