pub struct GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest {
pub filter: Option<String>,
pub page_size: Option<i32>,
pub order_by: Option<String>,
pub page_token: Option<String>,
}Expand description
Request message for TensorboardService.ExportTensorboardTimeSeriesData.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§filter: Option<String>Exports the TensorboardTimeSeries’ data that match the filter expression.
page_size: Option<i32>The 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.
order_by: Option<String>Field to use to sort the TensorboardTimeSeries’ data. By default, TensorboardTimeSeries’ data is returned in a pseudo random order.
page_token: Option<String>A 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.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl Clone for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
Source§fn clone(&self) -> GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
fn clone(&self) -> GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl Default for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
Source§fn default() -> GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
fn default() -> GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
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>,
impl RequestValue for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl RefUnwindSafe for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl Send for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl Sync for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl Unpin for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
impl UnwindSafe for GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more