pub struct SetOptions {
pub keep_failing: bool,
pub keep_going: bool,
pub try_fallback: bool,
pub verbosity: Verbosity,
pub max_build_jobs: u64,
pub max_silent_time: u64,
pub build_verbosity: Verbosity,
pub build_cores: u64,
pub use_substitutes: bool,
pub options: Vec<(NixString, NixString)>,
/* private fields */
}
Fields§
§keep_failing: bool
§keep_going: bool
§try_fallback: bool
§verbosity: Verbosity
§max_build_jobs: u64
§max_silent_time: u64
§build_verbosity: Verbosity
§build_cores: u64
§use_substitutes: bool
§options: Vec<(NixString, NixString)>
Trait Implementations§
Source§impl Clone for SetOptions
impl Clone for SetOptions
Source§fn clone(&self) -> SetOptions
fn clone(&self) -> SetOptions
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 SetOptions
impl Debug for SetOptions
Source§impl<'de> Deserialize<'de> for SetOptions
impl<'de> Deserialize<'de> for SetOptions
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 PartialEq for SetOptions
impl PartialEq for SetOptions
Source§impl Serialize for SetOptions
impl Serialize for SetOptions
impl Eq for SetOptions
impl StructuralPartialEq for SetOptions
Auto Trait Implementations§
impl Freeze for SetOptions
impl RefUnwindSafe for SetOptions
impl Send for SetOptions
impl Sync for SetOptions
impl Unpin for SetOptions
impl UnwindSafe for SetOptions
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