pub struct AddDocumentTabRequest {
pub tab_properties: Option<TabProperties>,
}Expand description
Adds a document tab. When a tab is added at a given index, all subsequent tabs’ indexes are incremented.
This type is not used in any activity, and only used as part of another schema.
Fields§
§tab_properties: Option<TabProperties>The properties of the tab to add. All properties are optional.
Trait Implementations§
Source§impl Clone for AddDocumentTabRequest
impl Clone for AddDocumentTabRequest
Source§fn clone(&self) -> AddDocumentTabRequest
fn clone(&self) -> AddDocumentTabRequest
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 AddDocumentTabRequest
impl Debug for AddDocumentTabRequest
Source§impl Default for AddDocumentTabRequest
impl Default for AddDocumentTabRequest
Source§fn default() -> AddDocumentTabRequest
fn default() -> AddDocumentTabRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddDocumentTabRequest
impl<'de> Deserialize<'de> for AddDocumentTabRequest
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 AddDocumentTabRequest
impl Serialize for AddDocumentTabRequest
impl Part for AddDocumentTabRequest
Auto Trait Implementations§
impl Freeze for AddDocumentTabRequest
impl RefUnwindSafe for AddDocumentTabRequest
impl Send for AddDocumentTabRequest
impl Sync for AddDocumentTabRequest
impl Unpin for AddDocumentTabRequest
impl UnwindSafe for AddDocumentTabRequest
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