Intuple

Trait Intuple 

Source
pub trait Intuple<IS>: Sized
where IS: IntupleStruct,
{ // Required method fn into_struct(self) -> IS; // Provided methods fn from_struct(item: IS) -> <IS as IntupleStruct>::Intuple { ... } fn fruct(item: IS) -> <IS as IntupleStruct>::Intuple { ... } fn intruct(self) -> IS { ... } }

Required Methods§

Source

fn into_struct(self) -> IS

Provided Methods§

Source

fn from_struct(item: IS) -> <IS as IntupleStruct>::Intuple

Source

fn fruct(item: IS) -> <IS as IntupleStruct>::Intuple

Source

fn intruct(self) -> IS

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Intuple<QuerioInputUnit> for ()

Source§

impl Intuple<QuerioVariableUnit> for ()

Implementors§