pub struct BlameFrontierRecord {
pub origin: Origin,
pub blob_hash: ContentHash,
pub state_line_count: u32,
pub mappings: Vec<BlameLineMap>,
pub target: BlameTarget,
}Expand description
One unfinalized hunk still walking toward older ancestors.
Fields§
§origin: Origin§blob_hash: ContentHash§state_line_count: u32§mappings: Vec<BlameLineMap>§target: BlameTargetImplementations§
Trait Implementations§
Source§impl Clone for BlameFrontierRecord
impl Clone for BlameFrontierRecord
Source§fn clone(&self) -> BlameFrontierRecord
fn clone(&self) -> BlameFrontierRecord
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 BlameFrontierRecord
impl Debug for BlameFrontierRecord
Source§impl<'de> Deserialize<'de> for BlameFrontierRecord
impl<'de> Deserialize<'de> for BlameFrontierRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BlameFrontierRecord
Source§impl PartialEq for BlameFrontierRecord
impl PartialEq for BlameFrontierRecord
Source§impl Serialize for BlameFrontierRecord
impl Serialize for BlameFrontierRecord
impl StructuralPartialEq for BlameFrontierRecord
Auto Trait Implementations§
impl Freeze for BlameFrontierRecord
impl RefUnwindSafe for BlameFrontierRecord
impl Send for BlameFrontierRecord
impl Sync for BlameFrontierRecord
impl Unpin for BlameFrontierRecord
impl UnsafeUnpin for BlameFrontierRecord
impl UnwindSafe for BlameFrontierRecord
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