#[non_exhaustive]pub struct BulkUpdateDataTableRowsRequest {
pub parent: String,
pub requests: Vec<UpdateDataTableRowRequest>,
/* private fields */
}Expand description
Request to update 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<UpdateDataTableRowRequest>Required. Data table rows to update. At max 1,000 rows (or rows with size less than 2MB) can be there in a request.
Implementations§
Source§impl BulkUpdateDataTableRowsRequest
impl BulkUpdateDataTableRowsRequest
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 BulkUpdateDataTableRowsRequest
impl Clone for BulkUpdateDataTableRowsRequest
Source§fn clone(&self) -> BulkUpdateDataTableRowsRequest
fn clone(&self) -> BulkUpdateDataTableRowsRequest
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 BulkUpdateDataTableRowsRequest
impl Default for BulkUpdateDataTableRowsRequest
Source§fn default() -> BulkUpdateDataTableRowsRequest
fn default() -> BulkUpdateDataTableRowsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BulkUpdateDataTableRowsRequest
impl PartialEq for BulkUpdateDataTableRowsRequest
Source§fn eq(&self, other: &BulkUpdateDataTableRowsRequest) -> bool
fn eq(&self, other: &BulkUpdateDataTableRowsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkUpdateDataTableRowsRequest
Auto Trait Implementations§
impl Freeze for BulkUpdateDataTableRowsRequest
impl RefUnwindSafe for BulkUpdateDataTableRowsRequest
impl Send for BulkUpdateDataTableRowsRequest
impl Sync for BulkUpdateDataTableRowsRequest
impl Unpin for BulkUpdateDataTableRowsRequest
impl UnsafeUnpin for BulkUpdateDataTableRowsRequest
impl UnwindSafe for BulkUpdateDataTableRowsRequest
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