pub enum IntegerType {
LongLong(LongLongType),
Long(LongType),
Short(ShortType),
}
Expand description
Parses unsigned? short|long|(long long)
Variants§
Trait Implementations§
Source§impl Clone for IntegerType
impl Clone for IntegerType
Source§fn clone(&self) -> IntegerType
fn clone(&self) -> IntegerType
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 IntegerType
impl Debug for IntegerType
Source§impl From<LongLongType> for IntegerType
impl From<LongLongType> for IntegerType
Source§fn from(x: LongLongType) -> Self
fn from(x: LongLongType) -> Self
Converts to this type from the input type.
Source§impl From<LongType> for IntegerType
impl From<LongType> for IntegerType
Source§impl From<ShortType> for IntegerType
impl From<ShortType> for IntegerType
Source§impl Hash for IntegerType
impl Hash for IntegerType
Source§impl Ord for IntegerType
impl Ord for IntegerType
Source§fn cmp(&self, other: &IntegerType) -> Ordering
fn cmp(&self, other: &IntegerType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntegerType
impl PartialEq for IntegerType
Source§impl PartialOrd for IntegerType
impl PartialOrd for IntegerType
impl Copy for IntegerType
impl Eq for IntegerType
impl StructuralPartialEq for IntegerType
Auto Trait Implementations§
impl Freeze for IntegerType
impl RefUnwindSafe for IntegerType
impl Send for IntegerType
impl Sync for IntegerType
impl Unpin for IntegerType
impl UnwindSafe for IntegerType
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