pub enum CompilerOptions {
CargoZigbuild,
Cargo(CargoCompilerOptions),
}Variants§
CargoZigbuild
Cargo(CargoCompilerOptions)
Trait Implementations§
source§impl Clone for CompilerOptions
impl Clone for CompilerOptions
source§fn clone(&self) -> CompilerOptions
fn clone(&self) -> CompilerOptions
Returns a copy 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 CompilerOptions
impl Debug for CompilerOptions
source§impl Default for CompilerOptions
impl Default for CompilerOptions
source§fn default() -> CompilerOptions
fn default() -> CompilerOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CompilerOptions
impl<'de> Deserialize<'de> for CompilerOptions
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 From<String> for CompilerOptions
impl From<String> for CompilerOptions
source§impl PartialEq<CompilerOptions> for CompilerOptions
impl PartialEq<CompilerOptions> for CompilerOptions
source§fn eq(&self, other: &CompilerOptions) -> bool
fn eq(&self, other: &CompilerOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CompilerOptions
impl StructuralEq for CompilerOptions
impl StructuralPartialEq for CompilerOptions
Auto Trait Implementations§
impl RefUnwindSafe for CompilerOptions
impl Send for CompilerOptions
impl Sync for CompilerOptions
impl Unpin for CompilerOptions
impl UnwindSafe for CompilerOptions
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.