pub struct ScanGraphCaptureEdit {
pub kind: ScanGraphCaptureEditKind,
pub previous_byte_len: u64,
pub next_byte_len: u64,
pub previous_digest: u64,
pub next_digest: u64,
}Expand description
Input facts for classifying one scan graph-capture edit.
Fields§
§kind: ScanGraphCaptureEditKindEdit kind to classify.
previous_byte_len: u64Previous resident artifact or buffer byte length.
next_byte_len: u64New resident artifact or buffer byte length.
previous_digest: u64Previous content, table, or verifier digest.
next_digest: u64New content, table, or verifier digest.
Implementations§
Trait Implementations§
Source§impl Clone for ScanGraphCaptureEdit
impl Clone for ScanGraphCaptureEdit
Source§fn clone(&self) -> ScanGraphCaptureEdit
fn clone(&self) -> ScanGraphCaptureEdit
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 ScanGraphCaptureEdit
Source§impl Debug for ScanGraphCaptureEdit
impl Debug for ScanGraphCaptureEdit
impl Eq for ScanGraphCaptureEdit
Source§impl Hash for ScanGraphCaptureEdit
impl Hash for ScanGraphCaptureEdit
Source§impl PartialEq for ScanGraphCaptureEdit
impl PartialEq for ScanGraphCaptureEdit
Source§fn eq(&self, other: &ScanGraphCaptureEdit) -> bool
fn eq(&self, other: &ScanGraphCaptureEdit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScanGraphCaptureEdit
Auto Trait Implementations§
impl Freeze for ScanGraphCaptureEdit
impl RefUnwindSafe for ScanGraphCaptureEdit
impl Send for ScanGraphCaptureEdit
impl Sync for ScanGraphCaptureEdit
impl Unpin for ScanGraphCaptureEdit
impl UnsafeUnpin for ScanGraphCaptureEdit
impl UnwindSafe for ScanGraphCaptureEdit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.