#[non_exhaustive]pub struct BulkGetDataTableRowsRequest {
pub parent: String,
pub requests: Vec<GetDataTableRowRequest>,
/* private fields */
}Expand description
Request to get data table rows in bulk.
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.parent: StringRequired. The resource id of the data table. Format: /projects/{project}/locations/{location}/instances/{instance}/dataTables/{data_table}
requests: Vec<GetDataTableRowRequest>Required. Data table rows to get. At max 1,000 rows can be there in a request.
Implementations§
Source§impl BulkGetDataTableRowsRequest
impl BulkGetDataTableRowsRequest
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_requests<T, V>(self, v: T) -> Self
pub fn set_requests<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for BulkGetDataTableRowsRequest
impl Clone for BulkGetDataTableRowsRequest
Source§fn clone(&self) -> BulkGetDataTableRowsRequest
fn clone(&self) -> BulkGetDataTableRowsRequest
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 BulkGetDataTableRowsRequest
impl Debug for BulkGetDataTableRowsRequest
Source§impl Default for BulkGetDataTableRowsRequest
impl Default for BulkGetDataTableRowsRequest
Source§fn default() -> BulkGetDataTableRowsRequest
fn default() -> BulkGetDataTableRowsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BulkGetDataTableRowsRequest
impl PartialEq for BulkGetDataTableRowsRequest
Source§fn eq(&self, other: &BulkGetDataTableRowsRequest) -> bool
fn eq(&self, other: &BulkGetDataTableRowsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkGetDataTableRowsRequest
Auto Trait Implementations§
impl Freeze for BulkGetDataTableRowsRequest
impl RefUnwindSafe for BulkGetDataTableRowsRequest
impl Send for BulkGetDataTableRowsRequest
impl Sync for BulkGetDataTableRowsRequest
impl Unpin for BulkGetDataTableRowsRequest
impl UnsafeUnpin for BulkGetDataTableRowsRequest
impl UnwindSafe for BulkGetDataTableRowsRequest
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