Enum move_compiler::naming::ast::BuiltinTypeName_
source · [−]pub enum BuiltinTypeName_ {
Address,
Signer,
U8,
U64,
U128,
Vector,
Bool,
}
Variants
Address
Signer
U8
U64
U128
Vector
Bool
Implementations
sourceimpl BuiltinTypeName_
impl BuiltinTypeName_
pub const ADDRESS: &'static str
pub const SIGNER: &'static str
pub const U_8: &'static str
pub const U_64: &'static str
pub const U_128: &'static str
pub const BOOL: &'static str
pub const VECTOR: &'static str
pub fn all_names() -> &'static BTreeSet<Symbol>
pub fn numeric() -> &'static BTreeSet<BuiltinTypeName_>
pub fn bits() -> &'static BTreeSet<BuiltinTypeName_>
pub fn ordered() -> &'static BTreeSet<BuiltinTypeName_>
pub fn is_numeric(&self) -> bool
pub fn resolve(name_str: &str) -> Option<Self>
pub fn declared_abilities(&self, loc: Loc) -> AbilitySet
pub fn tparam_constraints(&self, _loc: Loc) -> Vec<AbilitySet>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Trait Implementations
sourceimpl Clone for BuiltinTypeName_
impl Clone for BuiltinTypeName_
sourcefn clone(&self) -> BuiltinTypeName_
fn clone(&self) -> BuiltinTypeName_
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 BuiltinTypeName_
impl Debug for BuiltinTypeName_
sourceimpl Display for BuiltinTypeName_
impl Display for BuiltinTypeName_
sourceimpl Ord for BuiltinTypeName_
impl Ord for BuiltinTypeName_
sourceimpl PartialEq<BuiltinTypeName_> for BuiltinTypeName_
impl PartialEq<BuiltinTypeName_> for BuiltinTypeName_
sourceimpl PartialOrd<BuiltinTypeName_> for BuiltinTypeName_
impl PartialOrd<BuiltinTypeName_> for BuiltinTypeName_
sourcefn partial_cmp(&self, other: &BuiltinTypeName_) -> Option<Ordering>
fn partial_cmp(&self, other: &BuiltinTypeName_) -> 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 BuiltinTypeName_
impl StructuralEq for BuiltinTypeName_
impl StructuralPartialEq for BuiltinTypeName_
Auto Trait Implementations
impl RefUnwindSafe for BuiltinTypeName_
impl Send for BuiltinTypeName_
impl Sync for BuiltinTypeName_
impl Unpin for BuiltinTypeName_
impl UnwindSafe for BuiltinTypeName_
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more