pub trait Cast<Output> {
    fn cast(self) -> Result<Output>;
}

Required Methods

Implementors