pub trait MoveStruct: MoveType<TypeTag = Self::StructTag> {
type StructTag: MoveStructTag;
}Expand description
Trait marking a Move struct type. Has a specific way to construct a StructTag.
Required Associated Types§
type StructTag: MoveStructTag
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.