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 */);