pub enum GuestInjectError {
Config(String),
Backend(String),
Process(String),
Image(String),
Unsupported {
operation: &'static str,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for GuestInjectError
impl Debug for GuestInjectError
Source§impl Display for GuestInjectError
impl Display for GuestInjectError
Source§impl Error for GuestInjectError
impl Error for GuestInjectError
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 From<InjectError> for GuestInjectError
impl From<InjectError> for GuestInjectError
Source§fn from(value: InjectError) -> Self
fn from(value: InjectError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GuestInjectError
impl RefUnwindSafe for GuestInjectError
impl Send for GuestInjectError
impl Sync for GuestInjectError
impl Unpin for GuestInjectError
impl UnsafeUnpin for GuestInjectError
impl UnwindSafe for GuestInjectError
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