#[non_exhaustive]pub struct UpdateTableColumnDefinitionOperation {
pub cell_id: String,
pub column_id: TableColumnId,
pub new_title: String,
pub old_title: String,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cell_id: StringID of the table cell.
column_id: TableColumnIdID of the column being updated.
new_title: StringNew heading text.
old_title: StringOld heading text.
Implementations§
Source§impl UpdateTableColumnDefinitionOperation
impl UpdateTableColumnDefinitionOperation
Sourcepub fn builder() -> UpdateTableColumnDefinitionOperationBuilder<((), (), (), ())>
pub fn builder() -> UpdateTableColumnDefinitionOperationBuilder<((), (), (), ())>
Create a builder for building UpdateTableColumnDefinitionOperation.
On the builder, call .cell_id(...), .column_id(...), .new_title(...), .old_title(...) to set the values of the fields.
Finally, call .build() to create the instance of UpdateTableColumnDefinitionOperation.
Trait Implementations§
Source§impl Clone for UpdateTableColumnDefinitionOperation
impl Clone for UpdateTableColumnDefinitionOperation
Source§fn clone(&self) -> UpdateTableColumnDefinitionOperation
fn clone(&self) -> UpdateTableColumnDefinitionOperation
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<'de> Deserialize<'de> for UpdateTableColumnDefinitionOperation
impl<'de> Deserialize<'de> for UpdateTableColumnDefinitionOperation
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 Eq for UpdateTableColumnDefinitionOperation
impl StructuralPartialEq for UpdateTableColumnDefinitionOperation
Auto Trait Implementations§
impl Freeze for UpdateTableColumnDefinitionOperation
impl RefUnwindSafe for UpdateTableColumnDefinitionOperation
impl Send for UpdateTableColumnDefinitionOperation
impl Sync for UpdateTableColumnDefinitionOperation
impl Unpin for UpdateTableColumnDefinitionOperation
impl UnsafeUnpin for UpdateTableColumnDefinitionOperation
impl UnwindSafe for UpdateTableColumnDefinitionOperation
Blanket Implementations§
impl<T> BindgenSerializable for T
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