Enum sway_ast::literal::LitIntType
source · [−]pub enum LitIntType {
U8,
U16,
U32,
U64,
I8,
I16,
I32,
I64,
}
Variants
U8
U16
U32
U64
I8
I16
I32
I64
Trait Implementations
sourceimpl Clone for LitIntType
impl Clone for LitIntType
sourcefn clone(&self) -> LitIntType
fn clone(&self) -> LitIntType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LitIntType
impl Debug for LitIntType
sourceimpl Hash for LitIntType
impl Hash for LitIntType
sourceimpl PartialEq<LitIntType> for LitIntType
impl PartialEq<LitIntType> for LitIntType
sourcefn eq(&self, other: &LitIntType) -> bool
fn eq(&self, other: &LitIntType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialOrd<LitIntType> for LitIntType
impl PartialOrd<LitIntType> for LitIntType
sourcefn partial_cmp(&self, other: &LitIntType) -> Option<Ordering>
fn partial_cmp(&self, other: &LitIntType) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for LitIntType
impl StructuralEq for LitIntType
impl StructuralPartialEq for LitIntType
Auto Trait Implementations
impl RefUnwindSafe for LitIntType
impl Send for LitIntType
impl Sync for LitIntType
impl Unpin for LitIntType
impl UnwindSafe for LitIntType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more