pub struct IncludedAuditEntry {
pub ref_id: ContextRefId,
pub rule_id: String,
pub reason: String,
pub sensitivity: Sensitivity,
}Expand description
Audit entry for a selected ref.
Fields§
§ref_id: ContextRefIdIncluded ref.
rule_id: StringDeterministic rule or policy id that selected it.
reason: StringHuman-readable reason recorded for audit.
sensitivity: SensitivitySensitivity tier used during selection.
Trait Implementations§
Source§impl Clone for IncludedAuditEntry
impl Clone for IncludedAuditEntry
Source§fn clone(&self) -> IncludedAuditEntry
fn clone(&self) -> IncludedAuditEntry
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 IncludedAuditEntry
impl Debug for IncludedAuditEntry
Source§impl<'de> Deserialize<'de> for IncludedAuditEntry
impl<'de> Deserialize<'de> for IncludedAuditEntry
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 IncludedAuditEntry
impl PartialEq for IncludedAuditEntry
Source§fn eq(&self, other: &IncludedAuditEntry) -> bool
fn eq(&self, other: &IncludedAuditEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IncludedAuditEntry
impl Serialize for IncludedAuditEntry
impl Eq for IncludedAuditEntry
impl StructuralPartialEq for IncludedAuditEntry
Auto Trait Implementations§
impl Freeze for IncludedAuditEntry
impl RefUnwindSafe for IncludedAuditEntry
impl Send for IncludedAuditEntry
impl Sync for IncludedAuditEntry
impl Unpin for IncludedAuditEntry
impl UnsafeUnpin for IncludedAuditEntry
impl UnwindSafe for IncludedAuditEntry
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