pub struct UpdateModelConfig {
pub http_options: Option<HttpOptions>,
pub display_name: Option<String>,
pub description: Option<String>,
pub default_checkpoint_id: Option<String>,
}Expand description
UpdateModel 请求配置。
Fields§
§http_options: Option<HttpOptions>Optional. HTTP request overrides (SDK only, not sent to API).
display_name: Option<String>§description: Option<String>§default_checkpoint_id: Option<String>Trait Implementations§
Source§impl Clone for UpdateModelConfig
impl Clone for UpdateModelConfig
Source§fn clone(&self) -> UpdateModelConfig
fn clone(&self) -> UpdateModelConfig
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 UpdateModelConfig
impl Debug for UpdateModelConfig
Source§impl Default for UpdateModelConfig
impl Default for UpdateModelConfig
Source§fn default() -> UpdateModelConfig
fn default() -> UpdateModelConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateModelConfig
impl<'de> Deserialize<'de> for UpdateModelConfig
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
Auto Trait Implementations§
impl Freeze for UpdateModelConfig
impl RefUnwindSafe for UpdateModelConfig
impl Send for UpdateModelConfig
impl Sync for UpdateModelConfig
impl Unpin for UpdateModelConfig
impl UnsafeUnpin for UpdateModelConfig
impl UnwindSafe for UpdateModelConfig
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