pub struct IfChangedResult {
pub changed: bool,
pub baseline_hash: Option<String>,
pub current_hash: String,
pub threshold: u32,
pub captured_path: Option<String>,
}Fields§
§changed: bool§baseline_hash: Option<String>§current_hash: String§threshold: u32§captured_path: Option<String>Trait Implementations§
Source§impl Clone for IfChangedResult
impl Clone for IfChangedResult
Source§fn clone(&self) -> IfChangedResult
fn clone(&self) -> IfChangedResult
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 IfChangedResult
impl Debug for IfChangedResult
Auto Trait Implementations§
impl Freeze for IfChangedResult
impl RefUnwindSafe for IfChangedResult
impl Send for IfChangedResult
impl Sync for IfChangedResult
impl Unpin for IfChangedResult
impl UnsafeUnpin for IfChangedResult
impl UnwindSafe for IfChangedResult
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