pub struct TransformStatusEntry {
pub pack: String,
pub handler: String,
pub filename: String,
pub source_path: String,
pub deployed_path: String,
pub state: String,
}Expand description
One row in dodot transform status’s passive report.
Mirrors TransformCheckEntry but without any of the action /
conflict-block fields — status is a read-only inspection;
check is the action layer.
Fields§
§pack: String§handler: String§filename: String§source_path: String§deployed_path: String§state: StringMirror of DivergenceState, serialised as snake_case so the
template branches and JSON consumers see the same shape they
see in transform check.
Trait Implementations§
Source§impl Clone for TransformStatusEntry
impl Clone for TransformStatusEntry
Source§fn clone(&self) -> TransformStatusEntry
fn clone(&self) -> TransformStatusEntry
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 TransformStatusEntry
impl Debug for TransformStatusEntry
Auto Trait Implementations§
impl Freeze for TransformStatusEntry
impl RefUnwindSafe for TransformStatusEntry
impl Send for TransformStatusEntry
impl Sync for TransformStatusEntry
impl Unpin for TransformStatusEntry
impl UnsafeUnpin for TransformStatusEntry
impl UnwindSafe for TransformStatusEntry
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