pub enum MonitoringLevel {
Minimal,
Standard,
Enhanced,
FullAudit,
}Expand description
Monitoring level based on trust.
Variants§
Minimal
Minimal monitoring.
Standard
Standard monitoring.
Enhanced
Enhanced monitoring.
FullAudit
Full audit trail.
Trait Implementations§
Source§impl Clone for MonitoringLevel
impl Clone for MonitoringLevel
Source§fn clone(&self) -> MonitoringLevel
fn clone(&self) -> MonitoringLevel
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 MonitoringLevel
impl Debug for MonitoringLevel
Source§impl<'de> Deserialize<'de> for MonitoringLevel
impl<'de> Deserialize<'de> for MonitoringLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MonitoringLevel
impl PartialEq for MonitoringLevel
Source§impl Serialize for MonitoringLevel
impl Serialize for MonitoringLevel
impl Copy for MonitoringLevel
impl Eq for MonitoringLevel
impl StructuralPartialEq for MonitoringLevel
Auto Trait Implementations§
impl Freeze for MonitoringLevel
impl RefUnwindSafe for MonitoringLevel
impl Send for MonitoringLevel
impl Sync for MonitoringLevel
impl Unpin for MonitoringLevel
impl UnsafeUnpin for MonitoringLevel
impl UnwindSafe for MonitoringLevel
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