pub struct UpdateTableRequest {
pub fields: Option<FieldMask>,
pub table: Option<Table>,
}Expand description
Updates a table in the spreadsheet.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fields: Option<FieldMask>Required. The fields that should be updated. At least one field must be specified. The root table is implied and should not be specified. A single "*" can be used as short-hand for listing every field.
table: Option<Table>Required. The table to update.
Trait Implementations§
Source§impl Clone for UpdateTableRequest
impl Clone for UpdateTableRequest
Source§fn clone(&self) -> UpdateTableRequest
fn clone(&self) -> UpdateTableRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateTableRequest
impl Debug for UpdateTableRequest
Source§impl Default for UpdateTableRequest
impl Default for UpdateTableRequest
Source§fn default() -> UpdateTableRequest
fn default() -> UpdateTableRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTableRequest
impl<'de> Deserialize<'de> for UpdateTableRequest
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 Serialize for UpdateTableRequest
impl Serialize for UpdateTableRequest
impl Part for UpdateTableRequest
Auto Trait Implementations§
impl Freeze for UpdateTableRequest
impl RefUnwindSafe for UpdateTableRequest
impl Send for UpdateTableRequest
impl Sync for UpdateTableRequest
impl Unpin for UpdateTableRequest
impl UnwindSafe for UpdateTableRequest
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