pub enum ProviderError {
Io(Error),
DataUrl(DataUrlError),
DataUrlBase64(InvalidBase64),
ReqwestError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for ProviderError
impl Debug for ProviderError
Source§impl From<DataUrlError> for ProviderError
impl From<DataUrlError> for ProviderError
Source§fn from(value: DataUrlError) -> Self
fn from(value: DataUrlError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ProviderError
impl From<Error> for ProviderError
Source§impl From<Error> for ProviderError
impl From<Error> for ProviderError
Source§impl From<InvalidBase64> for ProviderError
impl From<InvalidBase64> for ProviderError
Source§fn from(value: InvalidBase64) -> Self
fn from(value: InvalidBase64) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProviderError
impl !RefUnwindSafe for ProviderError
impl Send for ProviderError
impl Sync for ProviderError
impl Unpin for ProviderError
impl !UnwindSafe for ProviderError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more