Skip to main content

StreamCellValue

Trait StreamCellValue 

Source
pub trait StreamCellValue {
    // Required method
    fn to_stream(&self) -> StreamCell;
}
Expand description

Values that can be passed to StreamWriter::set_row.

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl StreamCellValue for &str

Source§

impl StreamCellValue for Complex32

Source§

impl StreamCellValue for Complex64

Source§

impl StreamCellValue for Duration

Source§

impl StreamCellValue for NaiveDate

Source§

impl StreamCellValue for NaiveDateTime

Source§

impl StreamCellValue for NaiveTime

Source§

impl StreamCellValue for String

Source§

impl StreamCellValue for Vec<RichTextRun>

Source§

impl StreamCellValue for bool

Source§

impl StreamCellValue for f32

Source§

impl StreamCellValue for f64

Source§

impl StreamCellValue for i8

Source§

impl StreamCellValue for i16

Source§

impl StreamCellValue for i32

Source§

impl StreamCellValue for i64

Source§

impl StreamCellValue for isize

Source§

impl StreamCellValue for u8

Source§

impl StreamCellValue for u16

Source§

impl StreamCellValue for u32

Source§

impl StreamCellValue for u64

Source§

impl StreamCellValue for usize

Source§

impl<T: StreamCellValue> StreamCellValue for Option<T>

Implementors§