Enum sway_ast::literal::LitBoolType
source · [−]pub enum LitBoolType {
True,
False,
}
Variants
True
False
Trait Implementations
sourceimpl Clone for LitBoolType
impl Clone for LitBoolType
sourcefn clone(&self) -> LitBoolType
fn clone(&self) -> LitBoolType
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 LitBoolType
impl Debug for LitBoolType
sourceimpl From<LitBoolType> for bool
impl From<LitBoolType> for bool
sourcefn from(item: LitBoolType) -> Self
fn from(item: LitBoolType) -> Self
Converts to this type from the input type.
sourceimpl Hash for LitBoolType
impl Hash for LitBoolType
sourceimpl PartialEq<LitBoolType> for LitBoolType
impl PartialEq<LitBoolType> for LitBoolType
sourcefn eq(&self, other: &LitBoolType) -> bool
fn eq(&self, other: &LitBoolType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialOrd<LitBoolType> for LitBoolType
impl PartialOrd<LitBoolType> for LitBoolType
sourcefn partial_cmp(&self, other: &LitBoolType) -> Option<Ordering>
fn partial_cmp(&self, other: &LitBoolType) -> 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 LitBoolType
impl StructuralEq for LitBoolType
impl StructuralPartialEq for LitBoolType
Auto Trait Implementations
impl RefUnwindSafe for LitBoolType
impl Send for LitBoolType
impl Sync for LitBoolType
impl Unpin for LitBoolType
impl UnwindSafe for LitBoolType
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