Struct move_compiler::expansion::ast::AbilitySet
source · [−]pub struct AbilitySet(_);
Implementations
sourceimpl AbilitySet
impl AbilitySet
sourcepub const PRIMITIVES: [Ability_; 3]
pub const PRIMITIVES: [Ability_; 3]
Abilities for bool, u8, u64, u128, and address
sourcepub const REFERENCES: [Ability_; 2]
pub const REFERENCES: [Ability_; 2]
Abilities for &_ and &mut _
sourcepub const COLLECTION: [Ability_; 3]
pub const COLLECTION: [Ability_; 3]
Abilities for vector<_>, note they are predicated on the type argument
pub fn empty() -> Self
pub fn is_empty(&self) -> bool
pub fn len(&self) -> usize
pub fn add(&mut self, a: Ability) -> Result<(), Loc>
pub fn has_ability(&self, a: &Ability) -> bool
pub fn has_ability_(&self, a: Ability_) -> bool
pub fn intersect(&self, other: &Self) -> Self
pub fn union(&self, other: &Self) -> Self
pub fn is_subset(&self, other: &Self) -> bool
pub fn iter(&self) -> AbilitySetIter<'_>ⓘNotable traits for AbilitySetIter<'a>impl<'a> Iterator for AbilitySetIter<'a> type Item = Ability;
pub fn from_abilities(
iter: impl IntoIterator<Item = Ability>
) -> Result<Self, (Ability_, Loc, Loc)>
pub fn from_abilities_(
loc: Loc,
iter: impl IntoIterator<Item = Ability_>
) -> Result<Self, (Ability_, Loc, Loc)>
pub fn all(loc: Loc) -> Self
pub fn primitives(loc: Loc) -> Self
pub fn references(loc: Loc) -> Self
pub fn signer(loc: Loc) -> Self
pub fn collection(loc: Loc) -> Self
Trait Implementations
sourceimpl Clone for AbilitySet
impl Clone for AbilitySet
sourcefn clone(&self) -> AbilitySet
fn clone(&self) -> AbilitySet
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 AbilitySet
impl Debug for AbilitySet
sourceimpl Hash for AbilitySet
impl Hash for AbilitySet
sourceimpl<'a> IntoIterator for &'a AbilitySet
impl<'a> IntoIterator for &'a AbilitySet
sourceimpl IntoIterator for AbilitySet
impl IntoIterator for AbilitySet
sourceimpl Ord for AbilitySet
impl Ord for AbilitySet
sourceimpl PartialEq<AbilitySet> for AbilitySet
impl PartialEq<AbilitySet> for AbilitySet
sourcefn eq(&self, other: &AbilitySet) -> bool
fn eq(&self, other: &AbilitySet) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AbilitySet) -> bool
fn ne(&self, other: &AbilitySet) -> bool
This method tests for !=
.
sourceimpl PartialOrd<AbilitySet> for AbilitySet
impl PartialOrd<AbilitySet> for AbilitySet
sourcefn partial_cmp(&self, other: &AbilitySet) -> Option<Ordering>
fn partial_cmp(&self, other: &AbilitySet) -> 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 AbilitySet
impl StructuralEq for AbilitySet
impl StructuralPartialEq for AbilitySet
Auto Trait Implementations
impl RefUnwindSafe for AbilitySet
impl Send for AbilitySet
impl Sync for AbilitySet
impl Unpin for AbilitySet
impl UnwindSafe for AbilitySet
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<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more