Struct bitflags::__core::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
): 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> Placer<T> for BackPlace<'a, T>
type Place = BackPlace<'a, T>
Unstable (
collection_placement
): placement protocol is subject to change
fn make_place(self) -> BackPlace<'a, T>
Unstable (
collection_placement
): placement protocol is subject to change
impl<'a, T> Place<T> for BackPlace<'a, T>
fn pointer(&mut self) -> *mut T
Unstable (
collection_placement
): placement protocol is subject to change