Struct move_ir_types::ast::FieldIdent_
source · [−]pub struct FieldIdent_ {
pub struct_name: StructName,
pub type_actuals: Vec<Type>,
pub field: Field,
}
Expand description
A fully-qualified field identifier.
Rather than simply referring to a field ‘f’ with a single identifier and
relying on type inference to determine the type of the struct being
accessed, this type refers to the field ‘f’ on the explicit struct type
‘S
Fields
struct_name: StructName
The name of the struct type on which the field is declared.
type_actuals: Vec<Type>
For generic struct types, the type parameters used to instantiate the struct type (this is an empty vector for non-generic struct types).
field: Field
The name of the field.
Trait Implementations
sourceimpl Clone for FieldIdent_
impl Clone for FieldIdent_
sourcefn clone(&self) -> FieldIdent_
fn clone(&self) -> FieldIdent_
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 FieldIdent_
impl Debug for FieldIdent_
sourceimpl Display for FieldIdent_
impl Display for FieldIdent_
sourceimpl PartialEq<FieldIdent_> for FieldIdent_
impl PartialEq<FieldIdent_> for FieldIdent_
sourcefn eq(&self, other: &FieldIdent_) -> bool
fn eq(&self, other: &FieldIdent_) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FieldIdent_) -> bool
fn ne(&self, other: &FieldIdent_) -> bool
This method tests for !=
.
impl StructuralPartialEq for FieldIdent_
Auto Trait Implementations
impl RefUnwindSafe for FieldIdent_
impl Send for FieldIdent_
impl Sync for FieldIdent_
impl Unpin for FieldIdent_
impl UnwindSafe for FieldIdent_
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