Trait calamine::ToCellDeserializer[][src]

pub trait ToCellDeserializer<'a>: CellType {
    type Deserializer: for<'de> Deserializer<'de, Error = DeError>;
    fn to_cell_deserializer(&'a self, pos: (u32, u32)) -> Self::Deserializer;
}

Constructs a deserializer for a CellType.

Associated Types

The deserializer.

Required Methods

Construct a CellType deserializer at the specified position.

Implementors