Struct muse_lang::compiler::syntax::EnumDefinition
source · pub struct EnumDefinition {
pub visibility: Option<Ranged<Symbol>>,
pub enum: Ranged<Token>,
pub name: Ranged<Symbol>,
pub variants: Enclosed<Delimited<Ranged<EnumVariant>>>,
}Expand description
A custom enum type definition.
Fields§
§visibility: Option<Ranged<Symbol>>The visibility keyword, if specified.
enum: Ranged<Token>The enum keyword.
name: Ranged<Symbol>The name of the enum.
variants: Enclosed<Delimited<Ranged<EnumVariant>>>The variants of the enum, if present.
Trait Implementations§
source§impl Clone for EnumDefinition
impl Clone for EnumDefinition
source§fn clone(&self) -> EnumDefinition
fn clone(&self) -> EnumDefinition
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 EnumDefinition
impl Debug for EnumDefinition
source§impl PartialEq for EnumDefinition
impl PartialEq for EnumDefinition
source§impl TokenizeInto for EnumDefinition
impl TokenizeInto for EnumDefinition
impl StructuralPartialEq for EnumDefinition
Auto Trait Implementations§
impl Freeze for EnumDefinition
impl RefUnwindSafe for EnumDefinition
impl Send for EnumDefinition
impl Sync for EnumDefinition
impl Unpin for EnumDefinition
impl UnwindSafe for EnumDefinition
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
§impl<A> Cast for A
impl<A> Cast for A
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> TokenizeRanged for Twhere
T: TokenizeInto,
impl<T> TokenizeRanged for Twhere
T: TokenizeInto,
source§fn tokenize_ranged(
&self,
_range: SourceRange,
tokens: &mut VecDeque<Ranged<Token>>,
)
fn tokenize_ranged( &self, _range: SourceRange, tokens: &mut VecDeque<Ranged<Token>>, )
Tokenize
self into tokens within the enclosing range.