pub struct LiveEvidence {Show 14 fields
pub schema_version: String,
pub generated_at: Option<String>,
pub mode: String,
pub live_mode: String,
pub ready: bool,
pub risk_increasing_allowed: bool,
pub operator_context: OperatorContext,
pub summary: BTreeMap<String, Value>,
pub artifacts: Vec<LiveEvidenceArtifact>,
pub canary_rule: BTreeMap<String, Value>,
pub privacy: BTreeMap<String, Value>,
pub evidence_hash: String,
pub signature: BTreeMap<String, Value>,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§generated_at: Option<String>§mode: String§live_mode: String§ready: bool§risk_increasing_allowed: bool§operator_context: OperatorContext§summary: BTreeMap<String, Value>§artifacts: Vec<LiveEvidenceArtifact>§canary_rule: BTreeMap<String, Value>§privacy: BTreeMap<String, Value>§evidence_hash: String§signature: BTreeMap<String, Value>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for LiveEvidence
impl Clone for LiveEvidence
Source§fn clone(&self) -> LiveEvidence
fn clone(&self) -> LiveEvidence
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 LiveEvidence
impl Debug for LiveEvidence
Source§impl Default for LiveEvidence
impl Default for LiveEvidence
Source§fn default() -> LiveEvidence
fn default() -> LiveEvidence
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LiveEvidencewhere
LiveEvidence: Default,
impl<'de> Deserialize<'de> for LiveEvidencewhere
LiveEvidence: Default,
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
Auto Trait Implementations§
impl Freeze for LiveEvidence
impl RefUnwindSafe for LiveEvidence
impl Send for LiveEvidence
impl Sync for LiveEvidence
impl Unpin for LiveEvidence
impl UnsafeUnpin for LiveEvidence
impl UnwindSafe for LiveEvidence
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