pub trait Intuple<IS>: Sizedwhere
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§
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
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.