pub struct IntegerSuffix {
pub size: IntegerSize,
pub unsigned: bool,
pub imaginary: bool,
}
Expand description
Suffix of an integer literal
(C11 6.4.4.1)
Fields§
§size: IntegerSize
Minimum size of the integer literal
unsigned: bool
Integer literal has unsigned type
imaginary: bool
Integer literal is an imaginary part of a complex number
GNU extension suffixes i
and j
.
Trait Implementations§
Source§impl Clone for IntegerSuffix
impl Clone for IntegerSuffix
Source§fn clone(&self) -> IntegerSuffix
fn clone(&self) -> IntegerSuffix
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 IntegerSuffix
impl Debug for IntegerSuffix
Source§impl Hash for IntegerSuffix
impl Hash for IntegerSuffix
Source§impl PartialEq for IntegerSuffix
impl PartialEq for IntegerSuffix
impl Eq for IntegerSuffix
impl StructuralPartialEq for IntegerSuffix
Auto Trait Implementations§
impl Freeze for IntegerSuffix
impl RefUnwindSafe for IntegerSuffix
impl Send for IntegerSuffix
impl Sync for IntegerSuffix
impl Unpin for IntegerSuffix
impl UnwindSafe for IntegerSuffix
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