Struct move_model::model::AbilitySet
source · [−]pub struct AbilitySet(_);
Expand description
A set of Ability
s
Implementations
sourceimpl AbilitySet
impl AbilitySet
sourcepub const EMPTY: AbilitySet
pub const EMPTY: AbilitySet
The empty ability set
sourcepub const PRIMITIVES: AbilitySet
pub const PRIMITIVES: AbilitySet
Abilities for Bool
, U8
, U64
, U128
, and Address
sourcepub const REFERENCES: AbilitySet
pub const REFERENCES: AbilitySet
Abilities for Reference
and MutableReference
sourcepub const SIGNER: AbilitySet
pub const SIGNER: AbilitySet
Abilities for Signer
sourcepub const VECTOR: AbilitySet
pub const VECTOR: AbilitySet
Abilities for Vector
, note they are predicated on the type argument
sourcepub const ALL: AbilitySet
pub const ALL: AbilitySet
Ability set containing all abilities
pub fn has_ability(self, ability: Ability) -> bool
pub fn has_copy(self) -> bool
pub fn has_drop(self) -> bool
pub fn has_store(self) -> bool
pub fn has_key(self) -> bool
pub fn remove(self, ability: Ability) -> AbilitySet
pub fn intersect(self, other: AbilitySet) -> AbilitySet
pub fn union(self, other: AbilitySet) -> AbilitySet
pub fn is_subset(self, other: AbilitySet) -> bool
sourcepub fn polymorphic_abilities<I1, I2>(
declared_abilities: AbilitySet,
declared_phantom_parameters: I1,
type_arguments: I2
) -> Result<AbilitySet, PartialVMError> where
I1: IntoIterator<Item = bool>,
I2: IntoIterator<Item = AbilitySet>,
<I1 as IntoIterator>::IntoIter: ExactSizeIterator,
<I2 as IntoIterator>::IntoIter: ExactSizeIterator,
pub fn polymorphic_abilities<I1, I2>(
declared_abilities: AbilitySet,
declared_phantom_parameters: I1,
type_arguments: I2
) -> Result<AbilitySet, PartialVMError> where
I1: IntoIterator<Item = bool>,
I2: IntoIterator<Item = AbilitySet>,
<I1 as IntoIterator>::IntoIter: ExactSizeIterator,
<I2 as IntoIterator>::IntoIter: ExactSizeIterator,
For a polymorphic type, its actual abilities correspond to its declared abilities but
predicated on its non-phantom type arguments having that ability. For Key
, instead of needing
the same ability, the type arguments need Store
.
pub fn from_u8(byte: u8) -> Option<AbilitySet>
pub fn into_u8(self) -> u8
Trait Implementations
sourceimpl BitOr<Ability> for AbilitySet
impl BitOr<Ability> for AbilitySet
type Output = AbilitySet
type Output = AbilitySet
The resulting type after applying the |
operator.
sourcefn bitor(self, rhs: Ability) -> AbilitySet
fn bitor(self, rhs: Ability) -> AbilitySet
Performs the |
operation. Read more
sourceimpl BitOr<AbilitySet> for AbilitySet
impl BitOr<AbilitySet> for AbilitySet
type Output = AbilitySet
type Output = AbilitySet
The resulting type after applying the |
operator.
sourcefn bitor(self, rhs: AbilitySet) -> AbilitySet
fn bitor(self, rhs: AbilitySet) -> AbilitySet
Performs the |
operation. Read more
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<'de> Deserialize<'de> for AbilitySet
impl<'de> Deserialize<'de> for AbilitySet
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<AbilitySet, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<AbilitySet, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for AbilitySet
impl Hash for AbilitySet
sourceimpl IntoIterator for AbilitySet
impl IntoIterator for AbilitySet
type IntoIter = AbilitySetIterator
type IntoIter = AbilitySetIterator
Which kind of iterator are we turning this into?
sourcefn into_iter(self) -> <AbilitySet as IntoIterator>::IntoIter
fn into_iter(self) -> <AbilitySet as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
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
sourceimpl Serialize for AbilitySet
impl Serialize for AbilitySet
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for AbilitySet
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