pub struct DiffImpactFile {
pub old_path: Option<String>,
pub new_path: Option<String>,
pub disposition: String,
pub analyzable: bool,
pub symbol_changes: usize,
pub moved_symbols: usize,
pub coverage_explained: bool,
pub old_residual: Vec<(u32, u32)>,
pub new_residual: Vec<(u32, u32)>,
pub test_artifact: bool,
}Fields§
§old_path: Option<String>§new_path: Option<String>§disposition: String§analyzable: bool§symbol_changes: usize§moved_symbols: usize§coverage_explained: bool§old_residual: Vec<(u32, u32)>§new_residual: Vec<(u32, u32)>§test_artifact: boolTrait Implementations§
Source§impl Clone for DiffImpactFile
impl Clone for DiffImpactFile
Source§fn clone(&self) -> DiffImpactFile
fn clone(&self) -> DiffImpactFile
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 DiffImpactFile
impl Debug for DiffImpactFile
Source§impl<'de> Deserialize<'de> for DiffImpactFile
impl<'de> Deserialize<'de> for DiffImpactFile
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 DiffImpactFile
Source§impl PartialEq for DiffImpactFile
impl PartialEq for DiffImpactFile
Source§impl Serialize for DiffImpactFile
impl Serialize for DiffImpactFile
impl StructuralPartialEq for DiffImpactFile
Auto Trait Implementations§
impl Freeze for DiffImpactFile
impl RefUnwindSafe for DiffImpactFile
impl Send for DiffImpactFile
impl Sync for DiffImpactFile
impl Unpin for DiffImpactFile
impl UnsafeUnpin for DiffImpactFile
impl UnwindSafe for DiffImpactFile
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