pub struct DriftedFile {
pub path: String,
pub expected_lines: usize,
pub actual_lines: usize,
}Expand description
A single file that differs between generated and existing.
Fields§
§path: String§expected_lines: usize§actual_lines: usizeTrait Implementations§
Source§impl Clone for DriftedFile
impl Clone for DriftedFile
Source§fn clone(&self) -> DriftedFile
fn clone(&self) -> DriftedFile
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 moreSource§impl Debug for DriftedFile
impl Debug for DriftedFile
Source§impl<'de> Deserialize<'de> for DriftedFile
impl<'de> Deserialize<'de> for DriftedFile
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
Auto Trait Implementations§
impl Freeze for DriftedFile
impl RefUnwindSafe for DriftedFile
impl Send for DriftedFile
impl Sync for DriftedFile
impl Unpin for DriftedFile
impl UnsafeUnpin for DriftedFile
impl UnwindSafe for DriftedFile
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