Serializer

sealed class Serializer<T : IntHolder> : KSerializer<T>

Parent of classes responsible for serializing or deserializing an IntHolder.

Functions

Link copied to clipboard
open override fun deserialize(decoder: Decoder): T

Deserializes the value of type T using the format represented by the decoder.

Link copied to clipboard
open override fun serialize(encoder: Encoder, value: T)

Serializes the value of type T using the format represented by the encoder.

Properties

Link copied to clipboard
open override val descriptor: SerialDescriptor

Describes the structure of the serializable representation of T, produced by this serializer.