pub enum AlignmentSpecifier {
Type(Node<TypeName>),
Constant(Box<Node<Expression>>),
}
Expand description
Alignment specifier
(C11 6.7.5)
Variants§
Trait Implementations§
Source§impl Clone for AlignmentSpecifier
impl Clone for AlignmentSpecifier
Source§fn clone(&self) -> AlignmentSpecifier
fn clone(&self) -> AlignmentSpecifier
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 AlignmentSpecifier
impl Debug for AlignmentSpecifier
Source§impl PartialEq for AlignmentSpecifier
impl PartialEq for AlignmentSpecifier
impl StructuralPartialEq for AlignmentSpecifier
Auto Trait Implementations§
impl Freeze for AlignmentSpecifier
impl RefUnwindSafe for AlignmentSpecifier
impl Send for AlignmentSpecifier
impl Sync for AlignmentSpecifier
impl Unpin for AlignmentSpecifier
impl UnwindSafe for AlignmentSpecifier
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