pub trait ToCellDeserializer<'a>: CellType {
    type Deserializer: for<'de> Deserializer<'de, Error = DeError>;

    fn to_cell_deserializer(&'a self, pos: (u32, u32)) -> Self::Deserializer;
    fn is_empty(&self) -> bool;
}
Expand description

Constructs a deserializer for a CellType.

Required Associated Types

The deserializer.

Required Methods

Construct a CellType deserializer at the specified position.

Assess if the cell is empty.

Implementors