pub struct BehaviourDelta {
pub past_diffs: usize,
pub future_diffs: usize,
}Expand description
The per-window behavioural delta (counts of differing zdump lines), present only when the oracle ran.
Fields§
§past_diffs: usize§future_diffs: usizeTrait Implementations§
Source§impl Clone for BehaviourDelta
impl Clone for BehaviourDelta
Source§fn clone(&self) -> BehaviourDelta
fn clone(&self) -> BehaviourDelta
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 moreimpl Copy for BehaviourDelta
Source§impl Debug for BehaviourDelta
impl Debug for BehaviourDelta
impl Eq for BehaviourDelta
Source§impl PartialEq for BehaviourDelta
impl PartialEq for BehaviourDelta
Source§fn eq(&self, other: &BehaviourDelta) -> bool
fn eq(&self, other: &BehaviourDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BehaviourDelta
Auto Trait Implementations§
impl Freeze for BehaviourDelta
impl RefUnwindSafe for BehaviourDelta
impl Send for BehaviourDelta
impl Sync for BehaviourDelta
impl Unpin for BehaviourDelta
impl UnsafeUnpin for BehaviourDelta
impl UnwindSafe for BehaviourDelta
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