trait DisplayIndexState<'a> {
type State;
// Required methods
fn prepare(
&self,
options: &FormatOptions<'a>,
) -> Result<Self::State, ArrowError>;
fn write(
&self,
state: &Self::State,
idx: usize,
f: &mut dyn Write,
) -> Result<(), FormatError>;
}
Expand description
DisplayIndex
with additional state