pub struct UpdateCellRequest {
pub value: Option<Value>,
}Fields§
§value: Option<Value>New cell value (any JSON type).
Implementations§
Source§impl UpdateCellRequest
impl UpdateCellRequest
pub fn new(value: Option<Value>) -> UpdateCellRequest
Trait Implementations§
Source§impl Clone for UpdateCellRequest
impl Clone for UpdateCellRequest
Source§fn clone(&self) -> UpdateCellRequest
fn clone(&self) -> UpdateCellRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateCellRequest
impl Debug for UpdateCellRequest
Source§impl Default for UpdateCellRequest
impl Default for UpdateCellRequest
Source§fn default() -> UpdateCellRequest
fn default() -> UpdateCellRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateCellRequest
impl<'de> Deserialize<'de> for UpdateCellRequest
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
Source§impl PartialEq for UpdateCellRequest
impl PartialEq for UpdateCellRequest
Source§fn eq(&self, other: &UpdateCellRequest) -> bool
fn eq(&self, other: &UpdateCellRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateCellRequest
impl Serialize for UpdateCellRequest
impl StructuralPartialEq for UpdateCellRequest
Auto Trait Implementations§
impl Freeze for UpdateCellRequest
impl RefUnwindSafe for UpdateCellRequest
impl Send for UpdateCellRequest
impl Sync for UpdateCellRequest
impl Unpin for UpdateCellRequest
impl UnsafeUnpin for UpdateCellRequest
impl UnwindSafe for UpdateCellRequest
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