#[non_exhaustive]pub struct BulkUpdateDataTableRowsResponse {
pub data_table_rows: Vec<DataTableRow>,
/* private fields */
}Expand description
Response message with updated data table rows.
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.data_table_rows: Vec<DataTableRow>DataTableRows updated
Implementations§
Source§impl BulkUpdateDataTableRowsResponse
impl BulkUpdateDataTableRowsResponse
Sourcepub fn set_data_table_rows<T, V>(self, v: T) -> Self
pub fn set_data_table_rows<T, V>(self, v: T) -> Self
Sets the value of data_table_rows.
§Example
ⓘ
use google_cloud_chronicle_v1::model::DataTableRow;
let x = BulkUpdateDataTableRowsResponse::new()
.set_data_table_rows([
DataTableRow::default()/* use setters */,
DataTableRow::default()/* use (different) setters */,
]);Trait Implementations§
Source§impl Clone for BulkUpdateDataTableRowsResponse
impl Clone for BulkUpdateDataTableRowsResponse
Source§fn clone(&self) -> BulkUpdateDataTableRowsResponse
fn clone(&self) -> BulkUpdateDataTableRowsResponse
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 BulkUpdateDataTableRowsResponse
impl Default for BulkUpdateDataTableRowsResponse
Source§fn default() -> BulkUpdateDataTableRowsResponse
fn default() -> BulkUpdateDataTableRowsResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for BulkUpdateDataTableRowsResponse
impl PartialEq for BulkUpdateDataTableRowsResponse
Source§fn eq(&self, other: &BulkUpdateDataTableRowsResponse) -> bool
fn eq(&self, other: &BulkUpdateDataTableRowsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkUpdateDataTableRowsResponse
Auto Trait Implementations§
impl Freeze for BulkUpdateDataTableRowsResponse
impl RefUnwindSafe for BulkUpdateDataTableRowsResponse
impl Send for BulkUpdateDataTableRowsResponse
impl Sync for BulkUpdateDataTableRowsResponse
impl Unpin for BulkUpdateDataTableRowsResponse
impl UnsafeUnpin for BulkUpdateDataTableRowsResponse
impl UnwindSafe for BulkUpdateDataTableRowsResponse
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