#[non_exhaustive]pub struct ExportTensorboardTimeSeriesDataRequest {
pub tensorboard_time_series: String,
pub filter: String,
pub page_size: i32,
pub page_token: String,
pub order_by: String,
/* private fields */
}Expand description
Request message for TensorboardService.ExportTensorboardTimeSeriesData.
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.tensorboard_time_series: StringRequired. The resource name of the TensorboardTimeSeries to export data
from. Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}
filter: StringExports the TensorboardTimeSeries’ data that match the filter expression.
page_size: i32The maximum number of data points to return per page. The default page_size is 1000. Values must be between 1 and 10000. Values above 10000 are coerced to 10000.
page_token: StringA page token, received from a previous ExportTensorboardTimeSeriesData call. Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to ExportTensorboardTimeSeriesData must match the call that provided the page token.
order_by: StringField to use to sort the TensorboardTimeSeries’ data. By default, TensorboardTimeSeries’ data is returned in a pseudo random order.
Implementations§
Source§impl ExportTensorboardTimeSeriesDataRequest
impl ExportTensorboardTimeSeriesDataRequest
pub fn new() -> Self
Sourcepub fn set_tensorboard_time_series<T: Into<String>>(self, v: T) -> Self
pub fn set_tensorboard_time_series<T: Into<String>>(self, v: T) -> Self
Sets the value of tensorboard_time_series.
Sourcepub fn set_filter<T: Into<String>>(self, v: T) -> Self
pub fn set_filter<T: Into<String>>(self, v: T) -> Self
Sets the value of filter.
Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sets the value of page_size.
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.
Sourcepub fn set_order_by<T: Into<String>>(self, v: T) -> Self
pub fn set_order_by<T: Into<String>>(self, v: T) -> Self
Sets the value of order_by.
Trait Implementations§
Source§impl Clone for ExportTensorboardTimeSeriesDataRequest
impl Clone for ExportTensorboardTimeSeriesDataRequest
Source§fn clone(&self) -> ExportTensorboardTimeSeriesDataRequest
fn clone(&self) -> ExportTensorboardTimeSeriesDataRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ExportTensorboardTimeSeriesDataRequest
impl Default for ExportTensorboardTimeSeriesDataRequest
Source§fn default() -> ExportTensorboardTimeSeriesDataRequest
fn default() -> ExportTensorboardTimeSeriesDataRequest
Source§impl<'de> Deserialize<'de> for ExportTensorboardTimeSeriesDataRequest
impl<'de> Deserialize<'de> for ExportTensorboardTimeSeriesDataRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for ExportTensorboardTimeSeriesDataRequest
impl PartialEq for ExportTensorboardTimeSeriesDataRequest
Source§fn eq(&self, other: &ExportTensorboardTimeSeriesDataRequest) -> bool
fn eq(&self, other: &ExportTensorboardTimeSeriesDataRequest) -> bool
self and other values to be equal, and is used by ==.