Struct move_binary_format::file_format::StructHandle
source · [−]pub struct StructHandle {
pub module: ModuleHandleIndex,
pub name: IdentifierIndex,
pub abilities: AbilitySet,
pub type_parameters: Vec<StructTypeParameter>,
}
Expand description
A StructHandle
is a reference to a user defined type. It is composed by a ModuleHandle
and the name of the type within that module.
A type in a module is uniquely identified by its name and as such the name is enough to perform resolution.
The StructHandle
is polymorphic: it can have type parameters in its fields and carries the
ability constraints for these type parameters (empty list for non-generic structs). It also
carries the abilities of the struct itself so that the verifier can check
ability semantics without having to load the referenced type.
At link time ability/constraint checking is performed and an error is reported if there is a mismatch with the definition.
Fields
module: ModuleHandleIndex
The module that defines the type.
name: IdentifierIndex
The name of the type.
abilities: AbilitySet
Contains the abilities for this struct For any instantiation of this type, the abilities of this type are predicated on that ability being satisfied for all type parameters.
type_parameters: Vec<StructTypeParameter>
The type formals (identified by their index into the vec)
Implementations
sourceimpl StructHandle
impl StructHandle
pub fn type_param_constraints(
&self
) -> impl ExactSizeIterator<Item = AbilitySet> + '_
Trait Implementations
sourceimpl Clone for StructHandle
impl Clone for StructHandle
sourcefn clone(&self) -> StructHandle
fn clone(&self) -> StructHandle
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 StructHandle
impl Debug for StructHandle
sourceimpl Hash for StructHandle
impl Hash for StructHandle
sourceimpl Ord for StructHandle
impl Ord for StructHandle
sourceimpl PartialEq<StructHandle> for StructHandle
impl PartialEq<StructHandle> for StructHandle
sourcefn eq(&self, other: &StructHandle) -> bool
fn eq(&self, other: &StructHandle) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StructHandle) -> bool
fn ne(&self, other: &StructHandle) -> bool
This method tests for !=
.
sourceimpl PartialOrd<StructHandle> for StructHandle
impl PartialOrd<StructHandle> for StructHandle
sourcefn partial_cmp(&self, other: &StructHandle) -> Option<Ordering>
fn partial_cmp(&self, other: &StructHandle) -> 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 StructHandle
impl StructuralEq for StructHandle
impl StructuralPartialEq for StructHandle
Auto Trait Implementations
impl RefUnwindSafe for StructHandle
impl Send for StructHandle
impl Sync for StructHandle
impl Unpin for StructHandle
impl UnwindSafe for StructHandle
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> 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