#[non_exhaustive]pub struct ListModelVersionCheckpointsRequest {
pub name: String,
pub page_size: i32,
pub page_token: String,
/* private fields */
}Expand description
Request message for ModelService.ListModelVersionCheckpoints.
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.name: StringRequired. The name of the model version to list checkpoints for.
projects/{project}/locations/{location}/models/{model}@{version}
Example: projects/{project}/locations/{location}/models/{model}@2
or
projects/{project}/locations/{location}/models/{model}@golden
If no version ID or alias is specified, the latest version will be
used.
page_size: i32Optional. The standard list page size.
page_token: StringOptional. The standard list page token. Typically obtained via next_page_token of the previous ListModelVersionCheckpoints call.
Implementations§
Trait Implementations§
Source§impl Clone for ListModelVersionCheckpointsRequest
impl Clone for ListModelVersionCheckpointsRequest
Source§fn clone(&self) -> ListModelVersionCheckpointsRequest
fn clone(&self) -> ListModelVersionCheckpointsRequest
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 ListModelVersionCheckpointsRequest
impl Default for ListModelVersionCheckpointsRequest
Source§fn default() -> ListModelVersionCheckpointsRequest
fn default() -> ListModelVersionCheckpointsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListModelVersionCheckpointsRequest
impl<'de> Deserialize<'de> for ListModelVersionCheckpointsRequest
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 ListModelVersionCheckpointsRequest
impl PartialEq for ListModelVersionCheckpointsRequest
Source§fn eq(&self, other: &ListModelVersionCheckpointsRequest) -> bool
fn eq(&self, other: &ListModelVersionCheckpointsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListModelVersionCheckpointsRequest
Auto Trait Implementations§
impl Freeze for ListModelVersionCheckpointsRequest
impl RefUnwindSafe for ListModelVersionCheckpointsRequest
impl Send for ListModelVersionCheckpointsRequest
impl Sync for ListModelVersionCheckpointsRequest
impl Unpin for ListModelVersionCheckpointsRequest
impl UnwindSafe for ListModelVersionCheckpointsRequest
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