pub trait RefTypes {
    type Owned;
    type Ref<'a>: Copy;
    type Mut<'a>;

    fn get_ref_from_mut<'a>(v: &'a Self::Mut<'a>) -> Self::Ref<'a>;
}
Expand description

A trait which essentially holds the types of a destructured tuple or structure.

Read the module documentation for more information about it.

Required Associated Types

Required Methods

Implementors