Struct move_binary_format::normalized::Field
source · [−]pub struct Field {
pub name: Identifier,
pub type_: Type,
}
Expand description
Normalized version of a FieldDefinition
. The name
is included even though it is
metadata that it is ignored by the VM. The reason: names are important to clients. We would
want a change from Account { bal: u64, seq: u64 }
to Account { seq: u64, bal: u64 }
to be
marked as incompatible. Not safe to compare without an enclosing Struct
.
Fields
name: Identifier
type_: Type
Implementations
sourceimpl Field
impl Field
sourcepub fn new(m: &CompiledModule, f: &FieldDefinition) -> Self
pub fn new(m: &CompiledModule, f: &FieldDefinition) -> Self
Create a Field
for FieldDefinition
f
in module m
.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Field
impl<'de> Deserialize<'de> for Field
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 Field
impl StructuralEq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
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