pub struct ImageNotFound {
pub name: String,
}Expand description
Error marker indicating a named image/ref does not exist in the repository.
Fields§
§name: StringThe name/ref that was not found.
Trait Implementations§
Source§impl Debug for ImageNotFound
impl Debug for ImageNotFound
Source§impl Display for ImageNotFound
impl Display for ImageNotFound
Source§impl Error for ImageNotFound
impl Error for ImageNotFound
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()
Auto Trait Implementations§
impl Freeze for ImageNotFound
impl RefUnwindSafe for ImageNotFound
impl Send for ImageNotFound
impl Sync for ImageNotFound
impl Unpin for ImageNotFound
impl UnsafeUnpin for ImageNotFound
impl UnwindSafe for ImageNotFound
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