#[non_exhaustive]pub struct ListDataTableRowsRequest {
pub parent: String,
pub page_size: i32,
pub page_token: String,
pub order_by: String,
pub filter: String,
/* private fields */
}Expand description
Request to list data table rows.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
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/{locations}/instances/{instance}/dataTables/{data_table}
page_size: i32Optional. The maximum number of data table rows to return. The service may return fewer than this value. If unspecified, at most 100 data table rows will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
page_token: StringOptional. A page token, received from a previous ListDataTableRows call.
order_by: StringOptional. Configures ordering of DataTables in the response. Note: Our implementation currently supports order by “create_time asc” only
filter: StringOptional. Filter facilitating search over data table rows. This filter performs a case-insensitive substring match on the row values.
Implementations§
Source§impl ListDataTableRowsRequest
impl ListDataTableRowsRequest
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_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
§Example
let x = ListDataTableRowsRequest::new().set_page_token("example");Sourcepub fn set_order_by<T: Into<String>>(self, v: T) -> Self
pub fn set_order_by<T: Into<String>>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for ListDataTableRowsRequest
impl Clone for ListDataTableRowsRequest
Source§fn clone(&self) -> ListDataTableRowsRequest
fn clone(&self) -> ListDataTableRowsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more