pub struct CellData {
pub cell: String,
pub value: Value,
pub value_type: String,
pub formula: Option<String>,
}Expand description
Single cell read result.
Fields§
§cell: String§value: Value§value_type: String§formula: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellData
impl RefUnwindSafe for CellData
impl Send for CellData
impl Sync for CellData
impl Unpin for CellData
impl UnsafeUnpin for CellData
impl UnwindSafe for CellData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more