pub trait Lift {
    type Abstract;

    fn lift(&self) -> Self::Abstract;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors