#[non_exhaustive]pub struct RemoveTableColumnOperation {
pub cell_id: String,
pub column_def: TableColumnDefinition,
pub index: u32,
pub values: Vec<TableRowValue>,
}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_def: TableColumnDefinitionDefinition of the column being removed.
index: u32The index of the column being removed.
values: Vec<TableRowValue>The values that are being removed together with the column.
The amount of values should match the amount of rows in the table.
Implementations§
Source§impl RemoveTableColumnOperation
impl RemoveTableColumnOperation
Sourcepub fn builder() -> RemoveTableColumnOperationBuilder<((), (), (), ())>
pub fn builder() -> RemoveTableColumnOperationBuilder<((), (), (), ())>
Create a builder for building RemoveTableColumnOperation.
On the builder, call .cell_id(...), .column_def(...), .index(...), .values(...) to set the values of the fields.
Finally, call .build() to create the instance of RemoveTableColumnOperation.
Trait Implementations§
Source§impl Clone for RemoveTableColumnOperation
impl Clone for RemoveTableColumnOperation
Source§fn clone(&self) -> RemoveTableColumnOperation
fn clone(&self) -> RemoveTableColumnOperation
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 RemoveTableColumnOperation
impl Debug for RemoveTableColumnOperation
Source§impl<'de> Deserialize<'de> for RemoveTableColumnOperation
impl<'de> Deserialize<'de> for RemoveTableColumnOperation
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 RemoveTableColumnOperation
impl StructuralPartialEq for RemoveTableColumnOperation
Auto Trait Implementations§
impl Freeze for RemoveTableColumnOperation
impl RefUnwindSafe for RemoveTableColumnOperation
impl Send for RemoveTableColumnOperation
impl Sync for RemoveTableColumnOperation
impl Unpin for RemoveTableColumnOperation
impl UnsafeUnpin for RemoveTableColumnOperation
impl UnwindSafe for RemoveTableColumnOperation
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