pub struct BehavioralSnapshot {
pub agents: HashMap<String, AgentSnapshotEntry>,
pub update_counter: u64,
}Expand description
Serializable snapshot of all behavioral tracking state.
Fields§
§agents: HashMap<String, AgentSnapshotEntry>Per-agent state.
update_counter: u64Global update counter at time of snapshot.
Trait Implementations§
Source§impl Clone for BehavioralSnapshot
impl Clone for BehavioralSnapshot
Source§fn clone(&self) -> BehavioralSnapshot
fn clone(&self) -> BehavioralSnapshot
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 BehavioralSnapshot
impl Debug for BehavioralSnapshot
Source§impl<'de> Deserialize<'de> for BehavioralSnapshot
impl<'de> Deserialize<'de> for BehavioralSnapshot
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 BehavioralSnapshot
impl RefUnwindSafe for BehavioralSnapshot
impl Send for BehavioralSnapshot
impl Sync for BehavioralSnapshot
impl Unpin for BehavioralSnapshot
impl UnsafeUnpin for BehavioralSnapshot
impl UnwindSafe for BehavioralSnapshot
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