pub struct Step {
pub from: String,
pub to: String,
pub found: Findings,
pub drift: Vec<(String, String, String)>,
}Expand description
One step: what the edit from from to to did.
Fields§
§from: String§to: String§found: Findings§drift: Vec<(String, String, String)>What was built differently around the two probes. Usually empty.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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