Trait erupt::ExtendableFromMut[][src]

pub trait ExtendableFromMut<'a, T> {
    fn extend_from(self, other: &'a mut T) -> Self
    where
        Self: Sized
, { ... } }
Expand description

Provides type-safe *mut pointer chain support.

Provided methods

Appends other (+ its pointer chain) to the end of this pointer chain.

Implementors