pub struct ChangeReviewFile {
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)>,
}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)>Trait Implementations§
Source§impl Clone for ChangeReviewFile
impl Clone for ChangeReviewFile
Source§fn clone(&self) -> ChangeReviewFile
fn clone(&self) -> ChangeReviewFile
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 ChangeReviewFile
impl Debug for ChangeReviewFile
Source§impl<'de> Deserialize<'de> for ChangeReviewFile
impl<'de> Deserialize<'de> for ChangeReviewFile
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 ChangeReviewFile
Source§impl PartialEq for ChangeReviewFile
impl PartialEq for ChangeReviewFile
Source§impl Serialize for ChangeReviewFile
impl Serialize for ChangeReviewFile
impl StructuralPartialEq for ChangeReviewFile
Auto Trait Implementations§
impl Freeze for ChangeReviewFile
impl RefUnwindSafe for ChangeReviewFile
impl Send for ChangeReviewFile
impl Sync for ChangeReviewFile
impl Unpin for ChangeReviewFile
impl UnsafeUnpin for ChangeReviewFile
impl UnwindSafe for ChangeReviewFile
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