pub struct DivergenceReport {
pub pack: String,
pub handler: String,
pub filename: String,
pub source_path: PathBuf,
pub deployed_path: PathBuf,
pub state: DivergenceState,
}Expand description
One row in dodot transform check’s report.
Fields§
§pack: String§handler: String§filename: StringFilename inside the cache (e.g. "config.toml"). Same as the
stripped virtual entry the preprocessor produced.
source_path: PathBufAbsolute path of the source file in the pack.
deployed_path: PathBufAbsolute path of the deployed (rendered) file in the datastore.
state: DivergenceStateThe classified state.
Trait Implementations§
Source§impl Clone for DivergenceReport
impl Clone for DivergenceReport
Source§fn clone(&self) -> DivergenceReport
fn clone(&self) -> DivergenceReport
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 DivergenceReport
impl Debug for DivergenceReport
Auto Trait Implementations§
impl Freeze for DivergenceReport
impl RefUnwindSafe for DivergenceReport
impl Send for DivergenceReport
impl Sync for DivergenceReport
impl Unpin for DivergenceReport
impl UnsafeUnpin for DivergenceReport
impl UnwindSafe for DivergenceReport
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