ArrayViewItem

Trait ArrayViewItem 

Source
pub trait ArrayViewItem<H>: Clone + Sized
where H: Eq + Hash + Copy + Clone + Send + Sync + 'static,
{ // Required methods fn to_column(&self, column: H) -> String; fn to_row(&self) -> String; }
Expand description

A trait for displaying items inside an ArrayView.

Required Methods§

Source

fn to_column(&self, column: H) -> String

Method returning a string representation of the item for the specified column from type H.

Source

fn to_row(&self) -> String

Method returning a string representation of the item for the row header.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§