Struct move_ir_types::ast::ImportDefinition
source · [−]pub struct ImportDefinition {
pub ident: ModuleIdent,
pub alias: ModuleName,
}
Expand description
A dependency/import declaration
Fields
ident: ModuleIdent
the dependency
addr.m
alias: ModuleName
the alias for that dependency
m
Implementations
sourceimpl ImportDefinition
impl ImportDefinition
sourcepub fn new(ident: ModuleIdent, alias_opt: Option<ModuleName>) -> Self
pub fn new(ident: ModuleIdent, alias_opt: Option<ModuleName>) -> Self
Creates a new import definition from a module identifier and an optional alias
If the alias is None
, the alias will be a cloned copy of the identifiers module name
Trait Implementations
sourceimpl Clone for ImportDefinition
impl Clone for ImportDefinition
sourcefn clone(&self) -> ImportDefinition
fn clone(&self) -> ImportDefinition
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 ImportDefinition
impl Debug for ImportDefinition
sourceimpl Display for ImportDefinition
impl Display for ImportDefinition
sourceimpl PartialEq<ImportDefinition> for ImportDefinition
impl PartialEq<ImportDefinition> for ImportDefinition
sourcefn eq(&self, other: &ImportDefinition) -> bool
fn eq(&self, other: &ImportDefinition) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ImportDefinition) -> bool
fn ne(&self, other: &ImportDefinition) -> bool
This method tests for !=
.
impl StructuralPartialEq for ImportDefinition
Auto Trait Implementations
impl RefUnwindSafe for ImportDefinition
impl Send for ImportDefinition
impl Sync for ImportDefinition
impl Unpin for ImportDefinition
impl UnwindSafe for ImportDefinition
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more