Trait erupt::ExtendableFromConst[][src]

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

Provides type-safe *const pointer chain support.

Provided methods

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

Implementors