pub struct AuditState {
pub mappings: Vec<(String, Vec<String>)>,
pub probes: Vec<ProbeEntry>,
}Expand description
Snapshot of prefix learning state for display / operator tooling.
Fields§
§mappings: Vec<(String, Vec<String>)>§probes: Vec<ProbeEntry>Trait Implementations§
Source§impl Clone for AuditState
impl Clone for AuditState
Source§fn clone(&self) -> AuditState
fn clone(&self) -> AuditState
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 AuditState
impl Debug for AuditState
Source§impl Default for AuditState
impl Default for AuditState
Source§fn default() -> AuditState
fn default() -> AuditState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuditState
impl RefUnwindSafe for AuditState
impl Send for AuditState
impl Sync for AuditState
impl Unpin for AuditState
impl UnsafeUnpin for AuditState
impl UnwindSafe for AuditState
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