pub struct LaunchFailure {
pub reason: FailureReason,
}Expand description
Why one runner could not be started.
Carries b1’s FailureReason rather than a taxonomy of this module’s own:
the reasons a runner fails to start are e3’s to know and b1’s to name,
and a third vocabulary here would be a third answer to a question the
operator asks once.
Fields§
§reason: FailureReasonImplementations§
Source§impl LaunchFailure
impl LaunchFailure
pub const fn new(reason: FailureReason) -> Self
Trait Implementations§
Source§impl Clone for LaunchFailure
impl Clone for LaunchFailure
Source§fn clone(&self) -> LaunchFailure
fn clone(&self) -> LaunchFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LaunchFailure
impl Debug for LaunchFailure
Source§impl Display for LaunchFailure
impl Display for LaunchFailure
impl Eq for LaunchFailure
Source§impl Error for LaunchFailure
impl Error for LaunchFailure
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()
Source§impl PartialEq for LaunchFailure
impl PartialEq for LaunchFailure
impl StructuralPartialEq for LaunchFailure
Auto Trait Implementations§
impl Freeze for LaunchFailure
impl RefUnwindSafe for LaunchFailure
impl Send for LaunchFailure
impl Sync for LaunchFailure
impl Unpin for LaunchFailure
impl UnsafeUnpin for LaunchFailure
impl UnwindSafe for LaunchFailure
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.