pub struct CellWrite {
pub cell_ref: String,
pub value: String,
}Expand description
One cell write inside a PlannedAction::WriteCells batch.
Fields§
§cell_ref: StringA1-notation cell reference, e.g. "B2", "AA17".
value: StringValue to write. Pass raw numeric strings ("108432.50", not
"$108,432.50"); Numbers formats per the cell’s display
format. Text values pass through unchanged.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CellWrite
impl<'de> Deserialize<'de> for CellWrite
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 CellWrite
Auto Trait Implementations§
impl Freeze for CellWrite
impl RefUnwindSafe for CellWrite
impl Send for CellWrite
impl Sync for CellWrite
impl Unpin for CellWrite
impl UnsafeUnpin for CellWrite
impl UnwindSafe for CellWrite
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