pub trait TryInto {
    type Provider: Provider;
    type Error: 'static + Display;
    fn try_into(self) -> Result<Self::Provider, Self::Error>;
}
Expand description

Converts a value into a Provider

Associated Types

Required methods

Implementations on Foreign Types

Implementors

Automatically implement anything that implements Provider