pub enum LaunchError {
Logger(LoggerError),
Launcher(Error),
LoadInfo(LaunchError),
LaunchCall(Error),
ProcessLaunch(Status),
DuplicateVdso(Status),
Fidl(Error),
CreateSocket(Status),
UtcClock(Status),
UnExpectedError,
}
Expand description
Error encountered while launching a component.
Variants§
Logger(LoggerError)
Launcher(Error)
LoadInfo(LaunchError)
LaunchCall(Error)
ProcessLaunch(Status)
DuplicateVdso(Status)
Fidl(Error)
CreateSocket(Status)
UtcClock(Status)
UnExpectedError
Trait Implementations§
Source§impl Debug for LaunchError
impl Debug for LaunchError
Source§impl Display for LaunchError
impl Display for LaunchError
Source§impl Error for LaunchError
impl Error for LaunchError
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<Error> for LaunchError
impl From<Error> for LaunchError
Source§impl From<LaunchError> for EnumerationError
impl From<LaunchError> for EnumerationError
Source§fn from(e: LaunchError) -> Self
fn from(e: LaunchError) -> Self
Converts to this type from the input type.
Source§impl From<LaunchError> for RunTestError
impl From<LaunchError> for RunTestError
Source§fn from(source: LaunchError) -> Self
fn from(source: LaunchError) -> Self
Converts to this type from the input type.
Source§impl From<LoggerError> for LaunchError
impl From<LoggerError> for LaunchError
Source§fn from(source: LoggerError) -> Self
fn from(source: LoggerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LaunchError
impl !RefUnwindSafe for LaunchError
impl Send for LaunchError
impl Sync for LaunchError
impl Unpin for LaunchError
impl !UnwindSafe for LaunchError
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