Struct move_ir_types::ast::QualifiedStructIdent
source · [−]pub struct QualifiedStructIdent {
pub module: ModuleName,
pub name: StructName,
}
Expand description
Identifier for a struct definition. Tells us where to look in the storage layer to find the code associated with the interface
Fields
module: ModuleName
Module name and address in which the struct is contained
name: StructName
Name for the struct class. Should be unique among structs published under the same module+address
Implementations
sourceimpl QualifiedStructIdent
impl QualifiedStructIdent
sourcepub fn new(module: ModuleName, name: StructName) -> Self
pub fn new(module: ModuleName, name: StructName) -> Self
Creates a new StructType handle from the name of the module alias and the name of the struct
sourcepub fn module(&self) -> &ModuleName
pub fn module(&self) -> &ModuleName
Accessor for the module alias
sourcepub fn name(&self) -> &StructName
pub fn name(&self) -> &StructName
Accessor for the struct name
Trait Implementations
sourceimpl Clone for QualifiedStructIdent
impl Clone for QualifiedStructIdent
sourcefn clone(&self) -> QualifiedStructIdent
fn clone(&self) -> QualifiedStructIdent
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 QualifiedStructIdent
impl Debug for QualifiedStructIdent
sourceimpl Display for QualifiedStructIdent
impl Display for QualifiedStructIdent
sourceimpl Hash for QualifiedStructIdent
impl Hash for QualifiedStructIdent
sourceimpl Ord for QualifiedStructIdent
impl Ord for QualifiedStructIdent
sourceimpl PartialEq<QualifiedStructIdent> for QualifiedStructIdent
impl PartialEq<QualifiedStructIdent> for QualifiedStructIdent
sourcefn eq(&self, other: &QualifiedStructIdent) -> bool
fn eq(&self, other: &QualifiedStructIdent) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &QualifiedStructIdent) -> bool
fn ne(&self, other: &QualifiedStructIdent) -> bool
This method tests for !=
.
sourceimpl PartialOrd<QualifiedStructIdent> for QualifiedStructIdent
impl PartialOrd<QualifiedStructIdent> for QualifiedStructIdent
sourcefn partial_cmp(&self, other: &QualifiedStructIdent) -> Option<Ordering>
fn partial_cmp(&self, other: &QualifiedStructIdent) -> 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 QualifiedStructIdent
impl StructuralEq for QualifiedStructIdent
impl StructuralPartialEq for QualifiedStructIdent
Auto Trait Implementations
impl RefUnwindSafe for QualifiedStructIdent
impl Send for QualifiedStructIdent
impl Sync for QualifiedStructIdent
impl Unpin for QualifiedStructIdent
impl UnwindSafe for QualifiedStructIdent
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