#[non_exhaustive]pub struct TuneModelRequest {
pub name: String,
/* private fields */
}Expand description
Request to manually start a tuning process now (instead of waiting for the periodically scheduled tuning to happen).
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 resource name of the model to tune.
Format:
projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/models/{model_id}
Implementations§
Trait Implementations§
Source§impl Clone for TuneModelRequest
impl Clone for TuneModelRequest
Source§fn clone(&self) -> TuneModelRequest
fn clone(&self) -> TuneModelRequest
Returns a duplicate 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 Debug for TuneModelRequest
impl Debug for TuneModelRequest
Source§impl Default for TuneModelRequest
impl Default for TuneModelRequest
Source§fn default() -> TuneModelRequest
fn default() -> TuneModelRequest
Returns the “default value” for a type. Read more
Source§impl Message for TuneModelRequest
impl Message for TuneModelRequest
Source§impl PartialEq for TuneModelRequest
impl PartialEq for TuneModelRequest
impl StructuralPartialEq for TuneModelRequest
Auto Trait Implementations§
impl Freeze for TuneModelRequest
impl RefUnwindSafe for TuneModelRequest
impl Send for TuneModelRequest
impl Sync for TuneModelRequest
impl Unpin for TuneModelRequest
impl UnsafeUnpin for TuneModelRequest
impl UnwindSafe for TuneModelRequest
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