pub struct TransformCheckEntry {
pub pack: String,
pub handler: String,
pub filename: String,
pub source_path: String,
pub deployed_path: String,
pub action: TransformAction,
pub conflict_block: String,
}Expand description
One row in the transform-check report.
Fields§
§pack: String§handler: String§filename: String§source_path: String§deployed_path: String§action: TransformAction§conflict_block: StringFor Conflict: the burgertocow-emitted block, ready for the
CLI layer to print. Empty for other actions.
Trait Implementations§
Source§impl Clone for TransformCheckEntry
impl Clone for TransformCheckEntry
Source§fn clone(&self) -> TransformCheckEntry
fn clone(&self) -> TransformCheckEntry
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 TransformCheckEntry
impl Debug for TransformCheckEntry
Auto Trait Implementations§
impl Freeze for TransformCheckEntry
impl RefUnwindSafe for TransformCheckEntry
impl Send for TransformCheckEntry
impl Sync for TransformCheckEntry
impl Unpin for TransformCheckEntry
impl UnsafeUnpin for TransformCheckEntry
impl UnwindSafe for TransformCheckEntry
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