pub struct WriteBurst {
pub minute: String,
pub writes: usize,
}Expand description
A suspicious burst of writes.
Memory poisoning through ordinary interaction tends to arrive as a cluster — MINJA’s technique is to induce several related writes in a short window. A human recording lessons does not usually produce thirty memories in a minute; a pack import or a runaway loop does. This flags the shape without claiming to know intent.
Fields§
§minute: StringRFC 3339 minute the burst falls in.
writes: usizeTrait Implementations§
Source§impl Clone for WriteBurst
impl Clone for WriteBurst
Source§fn clone(&self) -> WriteBurst
fn clone(&self) -> WriteBurst
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 WriteBurst
impl Debug for WriteBurst
Source§impl<'de> Deserialize<'de> for WriteBurst
impl<'de> Deserialize<'de> for WriteBurst
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 WriteBurst
impl RefUnwindSafe for WriteBurst
impl Send for WriteBurst
impl Sync for WriteBurst
impl Unpin for WriteBurst
impl UnsafeUnpin for WriteBurst
impl UnwindSafe for WriteBurst
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