#[non_exhaustive]pub struct UpdateTensorboardTimeSeriesRequest {
pub update_mask: Option<FieldMask>,
pub tensorboard_time_series: Option<TensorboardTimeSeries>,
/* private fields */
}tensorboard-service only.Expand description
Request message for TensorboardService.UpdateTensorboardTimeSeries.
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.update_mask: Option<FieldMask>Required. Field mask is used to specify the fields to be overwritten in the TensorboardTimeSeries resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it’s in the mask. If the user does not provide a mask then all fields are overwritten if new values are specified.
tensorboard_time_series: Option<TensorboardTimeSeries>Required. The TensorboardTimeSeries’ name field is used to identify the
TensorboardTimeSeries to be updated.
Format:
projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}
Implementations§
Source§impl UpdateTensorboardTimeSeriesRequest
impl UpdateTensorboardTimeSeriesRequest
pub fn new() -> Self
Sourcepub fn set_update_mask<T>(self, v: T) -> Self
pub fn set_update_mask<T>(self, v: T) -> Self
Sets the value of update_mask.
Sourcepub fn set_or_clear_update_mask<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_update_mask<T>(self, v: Option<T>) -> Self
Sets or clears the value of update_mask.
Sourcepub fn set_tensorboard_time_series<T>(self, v: T) -> Selfwhere
T: Into<TensorboardTimeSeries>,
pub fn set_tensorboard_time_series<T>(self, v: T) -> Selfwhere
T: Into<TensorboardTimeSeries>,
Sets the value of tensorboard_time_series.
Sourcepub fn set_or_clear_tensorboard_time_series<T>(self, v: Option<T>) -> Selfwhere
T: Into<TensorboardTimeSeries>,
pub fn set_or_clear_tensorboard_time_series<T>(self, v: Option<T>) -> Selfwhere
T: Into<TensorboardTimeSeries>,
Sets or clears the value of tensorboard_time_series.
Trait Implementations§
Source§impl Clone for UpdateTensorboardTimeSeriesRequest
impl Clone for UpdateTensorboardTimeSeriesRequest
Source§fn clone(&self) -> UpdateTensorboardTimeSeriesRequest
fn clone(&self) -> UpdateTensorboardTimeSeriesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for UpdateTensorboardTimeSeriesRequest
impl Default for UpdateTensorboardTimeSeriesRequest
Source§fn default() -> UpdateTensorboardTimeSeriesRequest
fn default() -> UpdateTensorboardTimeSeriesRequest
Source§impl PartialEq for UpdateTensorboardTimeSeriesRequest
impl PartialEq for UpdateTensorboardTimeSeriesRequest
Source§fn eq(&self, other: &UpdateTensorboardTimeSeriesRequest) -> bool
fn eq(&self, other: &UpdateTensorboardTimeSeriesRequest) -> bool
self and other values to be equal, and is used by ==.