pub trait StreamCellValue {
// Required method
fn to_stream(&self) -> StreamCell;
}Expand description
Values that can be passed to StreamWriter::set_row.
Required Methods§
fn to_stream(&self) -> StreamCell
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".