Struct std::collections::linked_list::BackPlace [] [src]

#[must_use = "places do nothing unless written to with `<-` syntax"]
pub struct BackPlace<'a, T> where T: 'a {
    // some fields omitted
}
Unstable (collection_placement #30172)

: struct name and placement protocol are subject to change

A place for insertion at the back of a LinkedList.

See LinkedList::back_place for details.

Trait Implementations

impl<'a, T> InPlace<T> for BackPlace<'a, T>

type Owner = ()

Unstable (collection_placement #30172)

: placement protocol is subject to change

unsafe fn finalize(self)

Unstable (collection_placement #30172)

: placement protocol is subject to change

impl<'a, T> Place<T> for BackPlace<'a, T>

fn pointer(&mut self) -> *mut T

Unstable (collection_placement #30172)

: placement protocol is subject to change

impl<'a, T> Placer<T> for BackPlace<'a, T>

type Place = BackPlace<'a, T>

Unstable (collection_placement #30172)

: placement protocol is subject to change

fn make_place(self) -> BackPlace<'a, T>

Unstable (collection_placement #30172)

: placement protocol is subject to change