pub struct BootstrapAction {
pub action: String,
pub path: String,
pub detail: String,
}Expand description
One planned or performed action.
Fields§
§action: StringShort verb (create, skip, would_create).
path: StringRelative path affected.
detail: StringDetail message.
Trait Implementations§
Source§impl Clone for BootstrapAction
impl Clone for BootstrapAction
Source§fn clone(&self) -> BootstrapAction
fn clone(&self) -> BootstrapAction
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 moreSource§impl Debug for BootstrapAction
impl Debug for BootstrapAction
Source§impl<'de> Deserialize<'de> for BootstrapAction
impl<'de> Deserialize<'de> for BootstrapAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BootstrapAction
impl RefUnwindSafe for BootstrapAction
impl Send for BootstrapAction
impl Sync for BootstrapAction
impl Unpin for BootstrapAction
impl UnsafeUnpin for BootstrapAction
impl UnwindSafe for BootstrapAction
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