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
}
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>
Place
is the intermedate agent guarding the uninitialized state for Data
. Read more
fn make_place(self) -> BackPlace<'a, T>
Creates a fresh place from self
.
impl<'a, T> Place<T> for BackPlace<'a, T>
fn pointer(&mut self) -> *mut T
Returns the address where the input value will be written. Note that the data at this address is generally uninitialized, and thus one should use ptr::write
for initializing it. Read more