[][src]Trait calamine::ToCellDeserializer

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; }

Constructs a deserializer for a CellType.

Associated Types

type Deserializer: for<'de> Deserializer<'de, Error = DeError>

The deserializer.

Loading content...

Required methods

fn to_cell_deserializer(&'a self, pos: (u32, u32)) -> Self::Deserializer

Construct a CellType deserializer at the specified position.

fn is_empty(&self) -> bool

Assess if the cell is empty.

Loading content...

Implementors

impl<'a> ToCellDeserializer<'a> for DataType[src]

type Deserializer = DataTypeDeserializer<'a>

Loading content...