Enum IntegerLiteralSuffix
pub enum IntegerLiteralSuffix {
U,
L,
UL,
LL,
ULL,
}Expand description
An integer literal suffix.
Variants§
Trait Implementations§
§impl Clone for IntegerLiteralSuffix
impl Clone for IntegerLiteralSuffix
§fn clone(&self) -> IntegerLiteralSuffix
fn clone(&self) -> IntegerLiteralSuffix
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 more§impl Debug for IntegerLiteralSuffix
impl Debug for IntegerLiteralSuffix
§impl Display for IntegerLiteralSuffix
impl Display for IntegerLiteralSuffix
§impl PartialEq for IntegerLiteralSuffix
impl PartialEq for IntegerLiteralSuffix
impl Copy for IntegerLiteralSuffix
impl Eq for IntegerLiteralSuffix
impl StructuralPartialEq for IntegerLiteralSuffix
Auto Trait Implementations§
impl Freeze for IntegerLiteralSuffix
impl RefUnwindSafe for IntegerLiteralSuffix
impl Send for IntegerLiteralSuffix
impl Sync for IntegerLiteralSuffix
impl Unpin for IntegerLiteralSuffix
impl UnwindSafe for IntegerLiteralSuffix
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