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§
Sourcefn as_vtable(&'static self) -> ArrayVTable
fn as_vtable(&'static self) -> ArrayVTable
Wraps the vtable into an ArrayVTable by static reference.
Sourcefn into_vtable(self) -> ArrayVTable
fn into_vtable(self) -> ArrayVTable
Wraps the vtable into an ArrayVTable by owned reference.