[][src]Struct intrusive_collections::linked_list::Link

#[repr(align(2))]pub struct Link { /* fields omitted */ }

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

Implementations

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 LinkedList.

Forcibly unlinks an object from a LinkedList.

Safety

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

Trait Implementations

impl Clone for Link[src]

impl Debug for Link[src]

impl Default for Link[src]

impl DefaultLinkOps for Link[src]

type Ops = LinkOps

The default link operations.

impl Send for Link[src]

Auto Trait Implementations

impl !Sync for Link

impl Unpin for Link

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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.