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