Struct spreadsheet_ods::CellContentRef [−][src]
pub struct CellContentRef<'a> {
pub value: Option<&'a Value>,
pub style: Option<&'a String>,
pub formula: Option<&'a String>,
pub validation_name: Option<&'a String>,
pub span: Option<&'a CellSpan>,
}Expand description
Holds references to the combined content of a cell. A temporary to hold the data when iterating over a sheet.
Fields
value: Option<&'a Value>Reference to the cell value.
style: Option<&'a String>Reference to the stylename.
formula: Option<&'a String>Reference to the cell formula.
validation_name: Option<&'a String>Reference to a cell validation.
span: Option<&'a CellSpan>Reference to the cellspan.
Implementations
Returns the validation name.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for CellContentRef<'a>
impl<'a> Send for CellContentRef<'a>
impl<'a> Sync for CellContentRef<'a>
impl<'a> Unpin for CellContentRef<'a>
impl<'a> UnwindSafe for CellContentRef<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more