pub struct LinkOps;
Expand description

Default LinkOps implementation for RBTree.

Trait Implementations§

source§

impl Clone for LinkOps

source§

fn clone(&self) -> LinkOps

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for LinkOps

source§

fn default() -> LinkOps

Returns the “default value” for a type. Read more
source§

impl LinkOps for LinkOps

§

type LinkPtr = NonNull<Link>

The link pointer type.
Attempts to acquire ownership of a link so that it can be used in an intrusive collection. Read more
Releases ownership of a link that was previously acquired with acquire_link. Read more
source§

impl LinkedListOps for LinkOps

source§

unsafe fn next(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the “next” link pointer of ptr. Read more
source§

unsafe fn prev(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the “prev” link pointer of ptr. Read more
source§

unsafe fn set_next(&mut self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr>)

Sets the “next” link pointer of ptr. Read more
source§

unsafe fn set_prev(&mut self, ptr: Self::LinkPtr, prev: Option<Self::LinkPtr>)

Sets the “prev” link pointer of ptr. Read more
source§

impl RBTreeOps for LinkOps

source§

unsafe fn left(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the left child of ptr. Read more
source§

unsafe fn right(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the right child of ptr. Read more
source§

unsafe fn parent(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the parent of ptr. Read more
source§

unsafe fn color(&self, ptr: Self::LinkPtr) -> Color

Returns the color of ptr. Read more
source§

unsafe fn set_left(&mut self, ptr: Self::LinkPtr, left: Option<Self::LinkPtr>)

Sets the left child of ptr. Read more
source§

unsafe fn set_right(&mut self, ptr: Self::LinkPtr, right: Option<Self::LinkPtr>)

Sets the right child of ptr. Read more
source§

unsafe fn set_parent( &mut self, ptr: Self::LinkPtr, parent: Option<Self::LinkPtr> )

Sets the parent of ptr. Read more
source§

unsafe fn set_color(&mut self, ptr: Self::LinkPtr, color: Color)

Sets the color of ptr. Read more
source§

impl SinglyLinkedListOps for LinkOps

source§

unsafe fn next(&self, ptr: Self::LinkPtr) -> Option<Self::LinkPtr>

Returns the “next” link pointer of ptr. Read more
source§

unsafe fn set_next(&mut self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr>)

Sets the “next” link pointer of ptr. Read more
source§

impl XorLinkedListOps for LinkOps

source§

unsafe fn next( &self, ptr: Self::LinkPtr, prev: Option<Self::LinkPtr> ) -> Option<Self::LinkPtr>

Returns the “next” link pointer of ptr. Read more
source§

unsafe fn prev( &self, ptr: Self::LinkPtr, next: Option<Self::LinkPtr> ) -> Option<Self::LinkPtr>

Returns the “prev” link pointer of ptr. Read more
source§

unsafe fn set( &mut self, ptr: Self::LinkPtr, prev: Option<Self::LinkPtr>, next: Option<Self::LinkPtr> )

Assigns the “prev” and “next” link pointers of ptr. Read more
source§

unsafe fn replace_next_or_prev( &mut self, ptr: Self::LinkPtr, old: Option<Self::LinkPtr>, new: Option<Self::LinkPtr> )

Replaces the “next” or “prev” link pointer of ptr. Read more
source§

impl Copy for LinkOps

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.