pub trait ToStruct {
    // Required methods
    fn to_kinds(&self) -> Kinds;
    fn get_types() -> Types
       where Self: Sized;
}

Required Methods§

source

fn to_kinds(&self) -> Kinds

source

fn get_types() -> Typeswhere Self: Sized,

Implementations on Foreign Types§

source§

impl<T> ToStruct for &Twhere T: ToStruct,

source§

fn to_kinds(&self) -> Kinds

source§

fn get_types() -> Typeswhere Self: Sized,

Implementors§