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