pub struct CTCell {
pub r: String,
pub t: Option<String>,
pub v: Option<String>,
}
Expand description
CTCell collection represents a cell in the worksheet. Information about the cell’s location (reference), value, data type, formatting, and formula is expressed here.
Fields§
§r: String
§t: Option<String>
§v: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CTCell
impl<'de> Deserialize<'de> for CTCell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CTCell
Auto Trait Implementations§
impl Freeze for CTCell
impl RefUnwindSafe for CTCell
impl Send for CTCell
impl Sync for CTCell
impl Unpin for CTCell
impl UnwindSafe for CTCell
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