pub enum Error {
GeneratingExecutionID,
UnknownService,
ServiceDisabled,
ServiceAlreadyStarted,
ServiceError(String),
Io(Error),
Shvar(Error),
RcConf(Error),
NulError,
}Expand description
The Error type.
Variants§
GeneratingExecutionID
There was an error generating enough randomness for an ExecutionID.
UnknownService
The named service is not known to rustrc.
ServiceDisabled
The service is disabled.
ServiceAlreadyStarted
The service is already started.
ServiceError(String)
There’s a persistent error with the service.
Io(Error)
An error returned by IO.
Shvar(Error)
An error returned by shvar.
RcConf(Error)
An error returned by rc_conf.
NulError
A NulError relating to CString.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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