#[non_exhaustive]pub enum LeanWorkerBootstrapSeverity {
Info,
Warning,
Error,
}Expand description
Severity of one worker bootstrap finding.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Info
Informational finding that does not block startup.
Warning
Suspicious state that may still start.
Error
The worker should not start real commands until this is fixed.
Trait Implementations§
Source§impl Clone for LeanWorkerBootstrapSeverity
impl Clone for LeanWorkerBootstrapSeverity
Source§fn clone(&self) -> LeanWorkerBootstrapSeverity
fn clone(&self) -> LeanWorkerBootstrapSeverity
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 LeanWorkerBootstrapSeverity
impl Debug for LeanWorkerBootstrapSeverity
Source§impl Hash for LeanWorkerBootstrapSeverity
impl Hash for LeanWorkerBootstrapSeverity
Source§impl PartialEq for LeanWorkerBootstrapSeverity
impl PartialEq for LeanWorkerBootstrapSeverity
Source§fn eq(&self, other: &LeanWorkerBootstrapSeverity) -> bool
fn eq(&self, other: &LeanWorkerBootstrapSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LeanWorkerBootstrapSeverity
impl Eq for LeanWorkerBootstrapSeverity
impl StructuralPartialEq for LeanWorkerBootstrapSeverity
Auto Trait Implementations§
impl Freeze for LeanWorkerBootstrapSeverity
impl RefUnwindSafe for LeanWorkerBootstrapSeverity
impl Send for LeanWorkerBootstrapSeverity
impl Sync for LeanWorkerBootstrapSeverity
impl Unpin for LeanWorkerBootstrapSeverity
impl UnsafeUnpin for LeanWorkerBootstrapSeverity
impl UnwindSafe for LeanWorkerBootstrapSeverity
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