pub enum CliSeverity {
Critical,
High,
Medium,
Low,
Info,
}Variants§
Trait Implementations§
Source§impl Clone for CliSeverity
impl Clone for CliSeverity
Source§fn clone(&self) -> CliSeverity
fn clone(&self) -> CliSeverity
Returns a duplicate of the value. Read more
1.0.0 · 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 CliSeverity
impl Debug for CliSeverity
Source§impl From<CliSeverity> for Severity
impl From<CliSeverity> for Severity
Source§fn from(c: CliSeverity) -> Self
fn from(c: CliSeverity) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for CliSeverity
impl ValueEnum for CliSeverity
impl Copy for CliSeverity
Auto Trait Implementations§
impl Freeze for CliSeverity
impl RefUnwindSafe for CliSeverity
impl Send for CliSeverity
impl Sync for CliSeverity
impl Unpin for CliSeverity
impl UnsafeUnpin for CliSeverity
impl UnwindSafe for CliSeverity
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