pub enum OpenExposedDirError {
InstanceNotResolved,
InstanceDestroyed,
Open(Status),
}
Variants§
Trait Implementations§
Source§impl Debug for OpenExposedDirError
impl Debug for OpenExposedDirError
Source§impl Display for OpenExposedDirError
impl Display for OpenExposedDirError
Source§impl Error for OpenExposedDirError
impl Error for OpenExposedDirError
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 Explain for OpenExposedDirError
impl Explain for OpenExposedDirError
fn as_zx_status(&self) -> Status
Source§impl From<OpenExposedDirError> for OpenError
impl From<OpenExposedDirError> for OpenError
Source§fn from(value: OpenExposedDirError) -> Self
fn from(value: OpenExposedDirError) -> Self
Converts to this type from the input type.
Source§impl From<OpenExposedDirError> for RebootError
impl From<OpenExposedDirError> for RebootError
Source§fn from(source: OpenExposedDirError) -> Self
fn from(source: OpenExposedDirError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpenExposedDirError
impl RefUnwindSafe for OpenExposedDirError
impl Send for OpenExposedDirError
impl Sync for OpenExposedDirError
impl Unpin for OpenExposedDirError
impl UnwindSafe for OpenExposedDirError
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