pub enum DryRunSupport {
NotSupported,
Supported,
RequiredBeforeExecute,
}Expand description
Whether a tool can preview its effect before committing it.
Variants§
Trait Implementations§
Source§impl Clone for DryRunSupport
impl Clone for DryRunSupport
Source§fn clone(&self) -> DryRunSupport
fn clone(&self) -> DryRunSupport
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 DryRunSupport
impl Debug for DryRunSupport
Source§impl<'de> Deserialize<'de> for DryRunSupport
impl<'de> Deserialize<'de> for DryRunSupport
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
Source§impl Hash for DryRunSupport
impl Hash for DryRunSupport
Source§impl PartialEq for DryRunSupport
impl PartialEq for DryRunSupport
Source§fn eq(&self, other: &DryRunSupport) -> bool
fn eq(&self, other: &DryRunSupport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DryRunSupport
impl Serialize for DryRunSupport
impl Copy for DryRunSupport
impl Eq for DryRunSupport
impl StructuralPartialEq for DryRunSupport
Auto Trait Implementations§
impl Freeze for DryRunSupport
impl RefUnwindSafe for DryRunSupport
impl Send for DryRunSupport
impl Sync for DryRunSupport
impl Unpin for DryRunSupport
impl UnsafeUnpin for DryRunSupport
impl UnwindSafe for DryRunSupport
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