Class: ObjectData
Object data, either a package or struct
BCS
The BCS serialized form for this type is defined by the following ABNF:
object-data = object-data-struct / object-data-package
object-data-struct = %d00 object-move-struct
object-data-package = %d01 object-move-package
Extends
UniffiAbstractObject
Implements
Properties
[destructorGuardSymbol]
readonly [destructorGuardSymbol]: UniffiGcObject;
[pointerLiteralSymbol]
readonly [pointerLiteralSymbol]: bigint;
[uniffiTypeNameSymbol]
readonly [uniffiTypeNameSymbol]: "ObjectData" = "ObjectData";
Methods
asOptPackage()
asOptPackage(): MovePackageLike | undefined;
Try to interpret this object as a MovePackage
Returns
MovePackageLike | undefined
Implementation of
asOptStruct()
asOptStruct(): MoveStruct | undefined;
Try to interpret this object as a MoveStruct
Returns
MoveStruct | undefined
Implementation of
equals()
equals(other): boolean;
Parameters
other
ObjectData
Returns
boolean
hashCode()
hashCode(): bigint;
Returns
bigint
isPackage()
isPackage(): boolean;
Return whether this object is a MovePackage
Returns
boolean
Implementation of
isStruct()
isStruct(): boolean;
Return whether this object is a MoveStruct
Returns
boolean
Implementation of
toDebugString()
toDebugString(): string;
Returns
string
toString()
toString(): string;
Returns a string representation of an object.
Returns
string
uniffiDestroy()
uniffiDestroy(): void;
Explicitly tell Rust to destroy the native peer that backs this object.
Once this method has been called, any following method calls will throw an error.
Can be called more than once.
Returns
void
Overrides
UniffiAbstractObject.uniffiDestroy
uniffiUse()
uniffiUse<T>(block): T;
A convenience method to use this object, then destroy it after its use.
Type Parameters
T
T
Parameters
block
(obj) => T
Returns
T
Inherited from
UniffiAbstractObject.uniffiUse
instanceOf()
static instanceOf(obj_): obj_ is ObjectData;
Parameters
obj_
any
Returns
obj_ is ObjectData
newMovePackage()
static newMovePackage(movePackage): ObjectDataLike;
Create an ObjectData from MovePackage
Parameters
movePackage
Returns
newMoveStruct()
static newMoveStruct(moveStruct): ObjectDataLike;
Create an ObjectData from a MoveStruct