Struct collections::vec::PlaceBack
[−]
[src]
#[must_use = "places do nothing unless written to with `<-` syntax"]pub struct PlaceBack<'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 Vec
.
See Vec::place_back
for details.
Trait Implementations
impl<'a, T> Debug for PlaceBack<'a, T> where
T: 'a + Debug,
[src]
T: 'a + Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<'a, T> Place<T> for PlaceBack<'a, T>
[src]
fn pointer(&mut self) -> *mut T
[src]
🔬 This is a nightly-only experimental API. (collection_placement
#30172)
placement protocol is subject to change
impl<'a, T> InPlace<T> for PlaceBack<'a, T>
[src]
type Owner = &'a mut T
🔬 This is a nightly-only experimental API. (collection_placement
#30172)
placement protocol is subject to change
unsafe fn finalize(self) -> &'a mut T
[src]
🔬 This is a nightly-only experimental API. (collection_placement
#30172)
placement protocol is subject to change