ValuesSerializer

class ValuesSerializer<T>(valueSerializer: KSerializer<T>) : KSerializer<Table<T>> (source)

Table serialiser that serialises the values of the table as a list, ignoring the ids of all table rows.

Constructors

Link copied to clipboard
constructor(valueSerializer: KSerializer<T>)

Properties

Link copied to clipboard
open override val descriptor: SerialDescriptor

Functions

Link copied to clipboard
open override fun deserialize(decoder: Decoder): Table<T>
Link copied to clipboard
open override fun serialize(encoder: Encoder, value: Table<T>)