Trait AllocForAny

Source
pub trait AllocForAny<T> {
    // Required methods
    fn galloc(self) -> &'static T;
    fn galloc_mut(self) -> &'static T;
}

Required Methods§

Implementors§

Source§

impl<T> AllocForAny<T> for T