pub trait FromField {
    type Error: Into<Error>;
    type Future: 'static + Future;
    fn from_field(field: Field) -> Self::Future;
}

Associated Types

The associated error which can be returned.

Future that resolves to a Self

Required methods

Implementations on Foreign Types

Implementors