#[non_exhaustive]pub struct ListTensorboardExperimentsResponse {
pub tensorboard_experiments: Vec<TensorboardExperiment>,
pub next_page_token: String,
/* private fields */
}Expand description
Response message for TensorboardService.ListTensorboardExperiments.
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.tensorboard_experiments: Vec<TensorboardExperiment>The TensorboardExperiments mathching the request.
next_page_token: StringA token, which can be sent as ListTensorboardExperimentsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
Implementations§
Source§impl ListTensorboardExperimentsResponse
impl ListTensorboardExperimentsResponse
pub fn new() -> Self
Sourcepub fn set_tensorboard_experiments<T, V>(self, v: T) -> Self
pub fn set_tensorboard_experiments<T, V>(self, v: T) -> Self
Sets the value of tensorboard_experiments.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for ListTensorboardExperimentsResponse
impl Clone for ListTensorboardExperimentsResponse
Source§fn clone(&self) -> ListTensorboardExperimentsResponse
fn clone(&self) -> ListTensorboardExperimentsResponse
Returns a copy 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 ListTensorboardExperimentsResponse
impl Default for ListTensorboardExperimentsResponse
Source§fn default() -> ListTensorboardExperimentsResponse
fn default() -> ListTensorboardExperimentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTensorboardExperimentsResponse
impl<'de> Deserialize<'de> for ListTensorboardExperimentsResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListTensorboardExperimentsResponse
impl PartialEq for ListTensorboardExperimentsResponse
Source§fn eq(&self, other: &ListTensorboardExperimentsResponse) -> bool
fn eq(&self, other: &ListTensorboardExperimentsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTensorboardExperimentsResponse
Auto Trait Implementations§
impl Freeze for ListTensorboardExperimentsResponse
impl RefUnwindSafe for ListTensorboardExperimentsResponse
impl Send for ListTensorboardExperimentsResponse
impl Sync for ListTensorboardExperimentsResponse
impl Unpin for ListTensorboardExperimentsResponse
impl UnwindSafe for ListTensorboardExperimentsResponse
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