pub struct PlannedAction {
pub summary: String,
}Expand description
One planned side effect recorded during dry-run (or planning).
Fields§
§summary: StringHuman-readable summary of the intended action.
Implementations§
Trait Implementations§
Source§impl Clone for PlannedAction
impl Clone for PlannedAction
Source§fn clone(&self) -> PlannedAction
fn clone(&self) -> PlannedAction
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 PlannedAction
impl Debug for PlannedAction
impl Eq for PlannedAction
Source§impl PartialEq for PlannedAction
impl PartialEq for PlannedAction
Source§fn eq(&self, other: &PlannedAction) -> bool
fn eq(&self, other: &PlannedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlannedAction
Auto Trait Implementations§
impl Freeze for PlannedAction
impl RefUnwindSafe for PlannedAction
impl Send for PlannedAction
impl Sync for PlannedAction
impl Unpin for PlannedAction
impl UnsafeUnpin for PlannedAction
impl UnwindSafe for PlannedAction
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