pub struct FlagsConfig {
pub allow_dirty: bool,
pub skip_ownership_check: bool,
pub strict_ownership: bool,
}Expand description
Nested flags configuration
Fields§
§allow_dirty: boolAllow publishing from a dirty git working tree
skip_ownership_check: boolSkip owners/permissions preflight
strict_ownership: boolFail preflight if ownership checks fail
Trait Implementations§
Source§impl Clone for FlagsConfig
impl Clone for FlagsConfig
Source§fn clone(&self) -> FlagsConfig
fn clone(&self) -> FlagsConfig
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 FlagsConfig
impl Debug for FlagsConfig
Source§impl Default for FlagsConfig
impl Default for FlagsConfig
Source§fn default() -> FlagsConfig
fn default() -> FlagsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlagsConfig
impl<'de> Deserialize<'de> for FlagsConfig
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 FlagsConfig
impl RefUnwindSafe for FlagsConfig
impl Send for FlagsConfig
impl Sync for FlagsConfig
impl Unpin for FlagsConfig
impl UnsafeUnpin for FlagsConfig
impl UnwindSafe for FlagsConfig
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