pub struct ImportPlan {
pub action: ImportAction,
pub reason: Option<String>,
pub dry_run: bool,
}Expand description
Plan for a single import operation
Fields§
§action: ImportActionAction to be performed
reason: Option<String>Optional reason (required for Fail action)
dry_run: boolWhether this is a dry-run
Implementations§
Source§impl ImportPlan
impl ImportPlan
Trait Implementations§
Source§impl Clone for ImportPlan
impl Clone for ImportPlan
Source§fn clone(&self) -> ImportPlan
fn clone(&self) -> ImportPlan
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 ImportPlan
impl Debug for ImportPlan
Source§impl<'de> Deserialize<'de> for ImportPlan
impl<'de> Deserialize<'de> for ImportPlan
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 ImportPlan
impl RefUnwindSafe for ImportPlan
impl Send for ImportPlan
impl Sync for ImportPlan
impl Unpin for ImportPlan
impl UnwindSafe for ImportPlan
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