pub struct InstallOperationOptions {
pub force: bool,
pub dry_run: bool,
pub no_prefix: bool,
pub no_merge: bool,
}Expand description
Options used during install operation
Fields§
§force: bool§dry_run: bool§no_prefix: bool§no_merge: boolTrait Implementations§
Source§impl Clone for InstallOperationOptions
impl Clone for InstallOperationOptions
Source§fn clone(&self) -> InstallOperationOptions
fn clone(&self) -> InstallOperationOptions
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 InstallOperationOptions
impl Debug for InstallOperationOptions
Source§impl Default for InstallOperationOptions
impl Default for InstallOperationOptions
Source§fn default() -> InstallOperationOptions
fn default() -> InstallOperationOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstallOperationOptions
impl<'de> Deserialize<'de> for InstallOperationOptions
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 InstallOperationOptions
impl RefUnwindSafe for InstallOperationOptions
impl Send for InstallOperationOptions
impl Sync for InstallOperationOptions
impl Unpin for InstallOperationOptions
impl UnwindSafe for InstallOperationOptions
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