pub enum MetadataAction {
Id(u64),
Phase(u8),
Severity(u8),
Msg(String),
Tag(String),
Rev(String),
Ver(String),
Maturity(u8),
Accuracy(u8),
LogData(String),
Status(u16),
}Expand description
Metadata actions.
Variants§
Id(u64)
Rule ID.
Phase(u8)
Processing phase.
Severity(u8)
Severity level.
Msg(String)
Message.
Tag(String)
Tag.
Rev(String)
Revision.
Ver(String)
Version.
Maturity(u8)
Maturity level.
Accuracy(u8)
Accuracy level.
LogData(String)
Log data.
Status(u16)
HTTP status code.
Trait Implementations§
Source§impl Clone for MetadataAction
impl Clone for MetadataAction
Source§fn clone(&self) -> MetadataAction
fn clone(&self) -> MetadataAction
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 moreAuto Trait Implementations§
impl Freeze for MetadataAction
impl RefUnwindSafe for MetadataAction
impl Send for MetadataAction
impl Sync for MetadataAction
impl Unpin for MetadataAction
impl UnwindSafe for MetadataAction
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