pub struct ModelExtractOptions {
pub trial_id: Option<i64>,
}Expand description
Options related to model extraction.
This type is not used in any activity, and only used as part of another schema.
Fields§
§trial_id: Option<i64>The 1-based ID of the trial to be exported from a hyperparameter tuning model. If not specified, the trial with id = Model.defaultTrialId is exported. This field is ignored for models not trained with hyperparameter tuning.
Trait Implementations§
Source§impl Clone for ModelExtractOptions
impl Clone for ModelExtractOptions
Source§fn clone(&self) -> ModelExtractOptions
fn clone(&self) -> ModelExtractOptions
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 ModelExtractOptions
impl Debug for ModelExtractOptions
Source§impl Default for ModelExtractOptions
impl Default for ModelExtractOptions
Source§fn default() -> ModelExtractOptions
fn default() -> ModelExtractOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelExtractOptions
impl<'de> Deserialize<'de> for ModelExtractOptions
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 Serialize for ModelExtractOptions
impl Serialize for ModelExtractOptions
impl Part for ModelExtractOptions
Auto Trait Implementations§
impl Freeze for ModelExtractOptions
impl RefUnwindSafe for ModelExtractOptions
impl Send for ModelExtractOptions
impl Sync for ModelExtractOptions
impl Unpin for ModelExtractOptions
impl UnwindSafe for ModelExtractOptions
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