ArrayVTableExt

Trait ArrayVTableExt 

Source
pub trait ArrayVTableExt {
    // Required methods
    fn as_vtable(&'static self) -> ArrayVTable;
    fn into_vtable(self) -> ArrayVTable;
    fn to_vtable(&self) -> ArrayVTable
       where Self: Clone;
}

Required Methods§

Source

fn as_vtable(&'static self) -> ArrayVTable

Wraps the vtable into an ArrayVTable by static reference.

Source

fn into_vtable(self) -> ArrayVTable

Wraps the vtable into an ArrayVTable by owned reference.

Source

fn to_vtable(&self) -> ArrayVTable
where Self: Clone,

Implementors§