pub struct EnumType {
pub identifier: Option<Node<Identifier>>,
pub enumerators: Vec<Node<Enumerator>>,
}
Expand description
Enumeration type specifier
(C11 6.7.2.2)
Fields§
§identifier: Option<Node<Identifier>>
§enumerators: Vec<Node<Enumerator>>
Trait Implementations§
impl StructuralPartialEq for EnumType
Auto Trait Implementations§
impl Freeze for EnumType
impl RefUnwindSafe for EnumType
impl Send for EnumType
impl Sync for EnumType
impl Unpin for EnumType
impl UnwindSafe for EnumType
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