Serialize an argument to BCS-serialized bytes.
The serializer instance used for serialization.
Serialize an argument to BCS-serialized bytes. Serialize an argument as a type-agnostic, fixed byte sequence. The byte sequence contains the number of the following bytes followed by the BCS-serialized bytes for a typed argument.
The serializer used to convert the argument.
Serialize an argument to BCS-serialized bytes as a type aware byte sequence. The byte sequence contains an enum variant index followed by the BCS-serialized bytes for a typed argument.
Deserialize the bytecode into a MoveVector of the specified type. This function allows you to convert serialized data into a usable MoveVector format.
The class type of the elements in the MoveVector.
Static
deserialize
Represents a serialized data structure that encapsulates a byte array. This class extends the Serializable class and provides methods for serialization and deserialization of byte data, as well as converting to a MoveVector.