pub struct DiffFindingChange<'a> {
pub change: &'a str,
pub key: &'a str,
pub kind: &'a str,
pub family: Option<&'a str>,
pub path: &'a str,
pub line: Option<u32>,
pub column: Option<u32>,
pub source_package: Option<&'a str>,
pub identity: Option<&'a StructuralIdentity>,
}Fields§
§change: &'a str§key: &'a str§kind: &'a str§family: Option<&'a str>§path: &'a str§line: Option<u32>§column: Option<u32>§source_package: Option<&'a str>§identity: Option<&'a StructuralIdentity>Trait Implementations§
Source§impl<'a> Clone for DiffFindingChange<'a>
impl<'a> Clone for DiffFindingChange<'a>
Source§fn clone(&self) -> DiffFindingChange<'a>
fn clone(&self) -> DiffFindingChange<'a>
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<'a> Copy for DiffFindingChange<'a>
Auto Trait Implementations§
impl<'a> Freeze for DiffFindingChange<'a>
impl<'a> RefUnwindSafe for DiffFindingChange<'a>
impl<'a> Send for DiffFindingChange<'a>
impl<'a> Sync for DiffFindingChange<'a>
impl<'a> Unpin for DiffFindingChange<'a>
impl<'a> UnsafeUnpin for DiffFindingChange<'a>
impl<'a> UnwindSafe for DiffFindingChange<'a>
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