pub enum ImageReferenceError {
ErrReferenceInvalidFormat,
ErrDomainInvalidFormat(String),
ErrTagInvalidFormat(String),
ErrDigestInvalidFormat(String),
ErrNameTooLong,
ErrNameContainsUppercase,
ErrNameEmpty,
ErrNameNotCanonical,
}
Variants§
ErrReferenceInvalidFormat
ErrDomainInvalidFormat(String)
ErrTagInvalidFormat(String)
ErrDigestInvalidFormat(String)
ErrNameTooLong
ErrNameContainsUppercase
ErrNameEmpty
ErrNameNotCanonical
Trait Implementations§
Source§impl Debug for ImageReferenceError
impl Debug for ImageReferenceError
Source§impl Display for ImageReferenceError
impl Display for ImageReferenceError
Source§impl Error for ImageReferenceError
impl Error for ImageReferenceError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ImageReferenceError
impl PartialEq for ImageReferenceError
impl Eq for ImageReferenceError
impl StructuralPartialEq for ImageReferenceError
Auto Trait Implementations§
impl Freeze for ImageReferenceError
impl RefUnwindSafe for ImageReferenceError
impl Send for ImageReferenceError
impl Sync for ImageReferenceError
impl Unpin for ImageReferenceError
impl UnwindSafe for ImageReferenceError
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