Enum fs_management::ShutdownError
source · pub enum ShutdownError {
ConnectToAdminService(Error),
Fidl(Error),
ProcessTerminatedSignal(Status),
GetProcessReturnCode(Status),
}
Expand description
The error type used by the shutdown operation of a serving filesystem.
Variants§
ConnectToAdminService(Error)
An error occurred connecting to the Admin service.
Fidl(Error)
A FIDL error occurred.
ProcessTerminatedSignal(Status)
An error occurred waiting for the ZX_PROCESS_TERMINATED
signal on the filesystem process.
GetProcessReturnCode(Status)
Failed to get the return code of the terminated filesystem process.
Trait Implementations§
source§impl Debug for ShutdownError
impl Debug for ShutdownError
source§impl Display for ShutdownError
impl Display for ShutdownError
source§impl Error for ShutdownError
impl Error for ShutdownError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()