Internal array of slot names for the object.
Name of the class.
Type of the class.
Reference to the constructor of the current class (late static binding).
Unique identifier for the constructor.
Identifier for the parent class (if any).
StaticIDStaticvalueReads data from the provided BytesIO instance and processes it using the associated class's read method.
The BytesIO instance containing the data to be read.
Additional arguments to be passed to the class's read method.
A promise that resolves with the result of the read operation.
Serializes the provided arguments using the associated class's write method.
The arguments to be serialized.
The resulting Buffer after serialization.
StaticreadAsynchronously reads a boolean value from the provided BytesIO stream.
The BytesIO instance to read data from.
Additional arguments (unused).
A promise that resolves to a boolean value.
StaticwriteSerializes the BoolTrue identifier into a 4-byte buffer.
A buffer containing the 32-bit little-endian representation of BoolTrue.ID.
Represents the boolean value
trueas a subclass ofBoolFalse.This class provides serialization and deserialization logic for the
trueboolean value, using a specific 32-bit identifier. It is typically used in contexts where boolean values need to be encoded or decoded in a binary format.Remarks
IDuniquely identifies theBoolTruetype in serialized form.valueis alwaystrue.writemethod serializes the identifier to a 4-byte buffer.readmethod asynchronously returns the boolean valuetrue.