pub struct CheckedAgainst {
pub source: &'static str,
pub tree: String,
}Expand description
Which graph the verdict describes, so a reader can tell what was compared.
Fields§
§source: &'static strThe tree the authored layer was read from — always "committed" here.
tree: StringThe HEAD tree id the derived graph was synced from and the authored
layer was parsed from. They are equal by construction: an inequality is
the NotRun case below, not a caveat on a verdict.
Trait Implementations§
Source§impl Clone for CheckedAgainst
impl Clone for CheckedAgainst
Source§fn clone(&self) -> CheckedAgainst
fn clone(&self) -> CheckedAgainst
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 CheckedAgainst
impl Debug for CheckedAgainst
Auto Trait Implementations§
impl Freeze for CheckedAgainst
impl RefUnwindSafe for CheckedAgainst
impl Send for CheckedAgainst
impl Sync for CheckedAgainst
impl Unpin for CheckedAgainst
impl UnsafeUnpin for CheckedAgainst
impl UnwindSafe for CheckedAgainst
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