Struct push_while_ref::VecChild[][src]

pub struct VecChild<'a, T>(_);

Implementations

impl<'a, T> VecChild<'a, T> where
    T: StaticType
[src]

pub fn push(&mut self, v: T) -> &'a T::Ref[src]

pushes the value to the owner and returns a reference to the inserted value without using the current lifetime

let mut vec = VecOwner::new();
let mut vec = vec.child();
let v1 = vec.push(Box::new(10));
let v2 = vec.push(Box::new(20));
assert_eq!(*v1, 10);
assert_eq!(*v2, 20);

Trait Implementations

impl<'a, T: Debug> Debug for VecChild<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for VecChild<'a, T> where
    T: RefUnwindSafe
[src]

impl<'a, T> Send for VecChild<'a, T> where
    T: Send
[src]

impl<'a, T> Sync for VecChild<'a, T> where
    T: Sync
[src]

impl<'a, T> Unpin for VecChild<'a, T>[src]

impl<'a, T> !UnwindSafe for VecChild<'a, T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.