#[non_exhaustive]pub enum CompilerOutput {
Abi,
Hashes,
}Expand description
Type of output for the compiler to emit.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for CompilerOutput
impl Clone for CompilerOutput
Source§fn clone(&self) -> CompilerOutput
fn clone(&self) -> CompilerOutput
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 CompilerOutput
impl Debug for CompilerOutput
Source§impl Display for CompilerOutput
impl Display for CompilerOutput
Source§impl<'_derivative_strum> From<&'_derivative_strum CompilerOutput> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum CompilerOutput> for &'static str
Source§fn from(x: &'_derivative_strum CompilerOutput) -> &'static str
fn from(x: &'_derivative_strum CompilerOutput) -> &'static str
Converts to this type from the input type.
Source§impl From<CompilerOutput> for &'static str
impl From<CompilerOutput> for &'static str
Source§fn from(x: CompilerOutput) -> &'static str
fn from(x: CompilerOutput) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for CompilerOutput
impl FromStr for CompilerOutput
Source§impl Hash for CompilerOutput
impl Hash for CompilerOutput
Source§impl IntoEnumIterator for CompilerOutput
impl IntoEnumIterator for CompilerOutput
type Iterator = CompilerOutputIter
fn iter() -> CompilerOutputIter ⓘ
Source§impl Ord for CompilerOutput
impl Ord for CompilerOutput
Source§fn cmp(&self, other: &CompilerOutput) -> Ordering
fn cmp(&self, other: &CompilerOutput) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CompilerOutput
impl PartialEq for CompilerOutput
Source§impl PartialOrd for CompilerOutput
impl PartialOrd for CompilerOutput
Source§impl TryFrom<&str> for CompilerOutput
impl TryFrom<&str> for CompilerOutput
Source§impl VariantNames for CompilerOutput
impl VariantNames for CompilerOutput
impl Copy for CompilerOutput
impl Eq for CompilerOutput
impl StructuralPartialEq for CompilerOutput
Auto Trait Implementations§
impl Freeze for CompilerOutput
impl RefUnwindSafe for CompilerOutput
impl Send for CompilerOutput
impl Sync for CompilerOutput
impl Unpin for CompilerOutput
impl UnwindSafe for CompilerOutput
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