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, { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (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> Debug for BackPlace<'a, T> where
T: 'a + Debug,
[src]
T: 'a + Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<'a, T> Place<T> for BackPlace<'a, T>
[src]
fn pointer(&mut self) -> *mut T
[src]
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
impl<'a, T> InPlace<T> for BackPlace<'a, T>
[src]
type Owner = ()
Owner
is the type of the end value of PLACE <- EXPR
Read more
unsafe fn finalize(self)
[src]
Converts self into the final value, shifting deallocation/cleanup responsibilities (if any remain), over to the returned instance of Owner
and forgetting self. Read more