pub struct RevertLine {
pub action: String,
pub path: String,
pub detail: String,
pub blocked: bool,
}Expand description
One file in a rewind plan: what will happen to it, and why.
Fields§
§action: StringImperative verb, so the list reads as the plan it is rather than as
history: delete, restore, recreate, keep.
path: String§detail: String§blocked: boolTrait Implementations§
Source§impl Clone for RevertLine
impl Clone for RevertLine
Source§fn clone(&self) -> RevertLine
fn clone(&self) -> RevertLine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RevertLine
impl RefUnwindSafe for RevertLine
impl Send for RevertLine
impl Sync for RevertLine
impl Unpin for RevertLine
impl UnsafeUnpin for RevertLine
impl UnwindSafe for RevertLine
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