pub struct BlameResult {
pub clause_id: ClauseId,
pub last_passed: Option<DateTime<Utc>>,
pub first_failed: Option<DateTime<Utc>>,
pub likely_commit: Option<CommitInfo>,
pub narrative: String,
pub suggested_fix: Option<String>,
}Expand description
Results from ought debug blame.
Fields§
§clause_id: ClauseId§last_passed: Option<DateTime<Utc>>§first_failed: Option<DateTime<Utc>>§likely_commit: Option<CommitInfo>§narrative: String§suggested_fix: Option<String>Trait Implementations§
Source§impl Clone for BlameResult
impl Clone for BlameResult
Source§fn clone(&self) -> BlameResult
fn clone(&self) -> BlameResult
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 moreAuto Trait Implementations§
impl Freeze for BlameResult
impl RefUnwindSafe for BlameResult
impl Send for BlameResult
impl Sync for BlameResult
impl Unpin for BlameResult
impl UnsafeUnpin for BlameResult
impl UnwindSafe for BlameResult
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