pub struct InitSystemFailure { /* private fields */ }Expand description
The init system was found and we tried to set up the service but ran into an error.
When there is another init system that does work this error is ignored. If no other system is available or there is but it/they fail too this error is reported.
A warning is always issued if the tracing feature is enabled.
Trait Implementations§
Source§impl Debug for InitSystemFailure
impl Debug for InitSystemFailure
Source§impl Display for InitSystemFailure
impl Display for InitSystemFailure
Source§impl Error for InitSystemFailure
impl Error for InitSystemFailure
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()
Auto Trait Implementations§
impl Freeze for InitSystemFailure
impl !RefUnwindSafe for InitSystemFailure
impl Send for InitSystemFailure
impl Sync for InitSystemFailure
impl Unpin for InitSystemFailure
impl !UnwindSafe for InitSystemFailure
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