pub struct EnumDeclaration {
pub decorators: Vec<Decorator>,
pub is_declare: bool,
pub name: String,
pub members: Vec<EnumMember>,
pub span: Range<usize>,
}Expand description
Represents an enum declaration.
Fields§
§decorators: Vec<Decorator>Decorators associated with the declaration.
is_declare: boolWhether the declaration is declared with declare.
name: StringThe name of the enum.
members: Vec<EnumMember>Members of the enum.
span: Range<usize>Source span of the declaration.
Trait Implementations§
Source§impl Clone for EnumDeclaration
impl Clone for EnumDeclaration
Source§fn clone(&self) -> EnumDeclaration
fn clone(&self) -> EnumDeclaration
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 EnumDeclaration
impl Debug for EnumDeclaration
Source§impl<'de> Deserialize<'de> for EnumDeclaration
impl<'de> Deserialize<'de> for EnumDeclaration
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
Auto Trait Implementations§
impl Freeze for EnumDeclaration
impl RefUnwindSafe for EnumDeclaration
impl Send for EnumDeclaration
impl Sync for EnumDeclaration
impl Unpin for EnumDeclaration
impl UnsafeUnpin for EnumDeclaration
impl UnwindSafe for EnumDeclaration
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