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