pub enum ConstrTypeDcl {
StructForwardDcl(StructForwardDcl),
StructDcl(StructDcl),
EnumDcl(EnumDcl),
UnionForwardDcl(UnionForwardDcl),
UnionDef(UnionDef),
BitsetDcl(BitsetDcl),
BitmaskDcl(BitmaskDcl),
}Variants§
StructForwardDcl(StructForwardDcl)
StructDcl(StructDcl)
EnumDcl(EnumDcl)
UnionForwardDcl(UnionForwardDcl)
UnionDef(UnionDef)
BitsetDcl(BitsetDcl)
BitmaskDcl(BitmaskDcl)
Trait Implementations§
Source§impl Clone for ConstrTypeDcl
impl Clone for ConstrTypeDcl
Source§fn clone(&self) -> ConstrTypeDcl
fn clone(&self) -> ConstrTypeDcl
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 ConstrTypeDcl
impl Debug for ConstrTypeDcl
Source§impl<'de> Deserialize<'de> for ConstrTypeDcl
impl<'de> Deserialize<'de> for ConstrTypeDcl
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
Source§impl From<ConstrTypeDcl> for ConstrTypeDcl
impl From<ConstrTypeDcl> for ConstrTypeDcl
Source§fn from(value: ConstrTypeDcl) -> Self
fn from(value: ConstrTypeDcl) -> Self
Converts to this type from the input type.
Source§impl From<StructDcl> for ConstrTypeDcl
impl From<StructDcl> for ConstrTypeDcl
Source§impl From<UnionDcl> for ConstrTypeDcl
impl From<UnionDcl> for ConstrTypeDcl
Auto Trait Implementations§
impl Freeze for ConstrTypeDcl
impl RefUnwindSafe for ConstrTypeDcl
impl Send for ConstrTypeDcl
impl Sync for ConstrTypeDcl
impl Unpin for ConstrTypeDcl
impl UnsafeUnpin for ConstrTypeDcl
impl UnwindSafe for ConstrTypeDcl
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