pub enum CompilerOptions {
CargoZigbuild,
Cargo(CargoCompilerOptions),
}Variants
CargoZigbuild
Cargo(CargoCompilerOptions)
Trait Implementations
sourceimpl Clone for CompilerOptions
impl Clone for CompilerOptions
sourcefn clone(&self) -> CompilerOptions
fn clone(&self) -> CompilerOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CompilerOptions
impl Debug for CompilerOptions
sourceimpl Default for CompilerOptions
impl Default for CompilerOptions
sourcefn default() -> CompilerOptions
fn default() -> CompilerOptions
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CompilerOptions
impl<'de> Deserialize<'de> for CompilerOptions
sourcefn 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
sourceimpl From<String> for CompilerOptions
impl From<String> for CompilerOptions
sourceimpl PartialEq<CompilerOptions> for CompilerOptions
impl PartialEq<CompilerOptions> for CompilerOptions
sourcefn eq(&self, other: &CompilerOptions) -> bool
fn eq(&self, other: &CompilerOptions) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more