[][src]Struct intrusive_collections::singly_linked_list::Link

pub struct Link { /* fields omitted */ }

Intrusive link that allows an object to be inserted into a SinglyLinkedList.

Methods

impl Link[src]

pub const fn new() -> Link[src]

Creates a new Link.

pub fn is_linked(&self) -> bool[src]

Checks whether the Link is linked into a SinglyLinkedList.

Forcibly unlinks an object from a SinglyLinkedList.

Safety

It is undefined behavior to call this function while still linked into a SinglyLinkedList. The only situation where this function is useful is after calling fast_clear on a SinglyLinkedList, since this clears the collection without marking the nodes as unlinked.

Trait Implementations

impl Debug for Link[src]

impl Send for Link[src]

impl Clone for Link[src]

impl Default for Link[src]

Auto Trait Implementations

impl Unpin for Link

impl !Sync for Link

impl !UnwindSafe for Link

impl !RefUnwindSafe for Link

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.