pub enum IntSuffix {
Show 13 variants
I8,
I16,
I32,
I64,
I128,
Isize,
U8,
U16,
U32,
U64,
U128,
Usize,
None,
}
Expand description
The suffix on an integer literal if any, like the u8
in 127u8
.
This type is available if Syn is built with the "derive"
or "full"
feature.
Variants§
Trait Implementations§
impl Eq for IntSuffix
impl StructuralPartialEq for IntSuffix
Auto Trait Implementations§
impl Freeze for IntSuffix
impl RefUnwindSafe for IntSuffix
impl Send for IntSuffix
impl Sync for IntSuffix
impl Unpin for IntSuffix
impl UnwindSafe for IntSuffix
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