Skip to main content

CredentialFetcherError

Type Alias CredentialFetcherError 

Source
pub type CredentialFetcherError = Box<dyn FetcherError>;
Expand description

Boxed, dyn-compatible fetcher error. Deliberately a boxed trait object rather than an associated type on CredentialFetcher: an associated type would make the trait dyn-incompatible, and the controller wraps it in its own crate::error::BandwidthControllerError anyway.

Aliased Type§

pub struct CredentialFetcherError(/* private fields */);

Trait Implementations§

Source§

impl<E: FetcherError> From<E> for CredentialFetcherError

Source§

fn from(e: E) -> Self

Converts to this type from the input type.