Struct move_binary_format::normalized::Struct
source · [−]pub struct Struct {
pub abilities: AbilitySet,
pub type_parameters: Vec<StructTypeParameter>,
pub fields: Vec<Field>,
}
Expand description
Normalized version of a StructDefinition
. Not safe to compare without an associated
ModuleId
or Module
.
Fields
abilities: AbilitySet
type_parameters: Vec<StructTypeParameter>
fields: Vec<Field>
Implementations
sourceimpl Struct
impl Struct
sourcepub fn new(m: &CompiledModule, def: &StructDefinition) -> (Identifier, Self)
pub fn new(m: &CompiledModule, def: &StructDefinition) -> (Identifier, Self)
Create a Struct
for StructDefinition
def
in module m
. Panics if def
is a
a native struct definition.
pub fn type_param_constraints(
&self
) -> impl ExactSizeIterator<Item = &AbilitySet>
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Struct
impl<'de> Deserialize<'de> for Struct
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Struct
impl StructuralEq for Struct
impl StructuralPartialEq for Struct
Auto Trait Implementations
impl RefUnwindSafe for Struct
impl Send for Struct
impl Sync for Struct
impl Unpin for Struct
impl UnwindSafe for Struct
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