cudf.core.dtypes.Decimal32Dtype.deserialize#
- classmethod Decimal32Dtype.deserialize(header: dict, frames: list)[source]#
Generate an object from a serialized representation.
Subclasses must implement this method to define how objects of that class can be constructed from a serialized representation generalized by
serialize()
.- Parameters:
- headerdict
The metadata required to reconstruct the object.
- frameslist
The Buffers or memoryviews that the object should contain.
- Returns:
- Serializable
A new instance of cls (a subclass of Serializable) equivalent to the instance that was serialized to produce the header and frames.
- meta private: