pub struct AlgorithmOperations {
pub train_predict: Option<ModelStats>,
pub undeploy: Option<ModelStats>,
pub deploy: Option<ModelStats>,
pub register: Option<ModelStats>,
pub train: Option<ModelStats>,
pub predict: Option<ModelStats>,
pub execute: Option<ModelStats>,
}Fields§
§train_predict: Option<ModelStats>§undeploy: Option<ModelStats>§deploy: Option<ModelStats>§register: Option<ModelStats>§train: Option<ModelStats>§predict: Option<ModelStats>§execute: Option<ModelStats>Implementations§
Source§impl AlgorithmOperations
impl AlgorithmOperations
pub fn new() -> AlgorithmOperations
Trait Implementations§
Source§impl Clone for AlgorithmOperations
impl Clone for AlgorithmOperations
Source§fn clone(&self) -> AlgorithmOperations
fn clone(&self) -> AlgorithmOperations
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlgorithmOperations
impl Debug for AlgorithmOperations
Source§impl Default for AlgorithmOperations
impl Default for AlgorithmOperations
Source§fn default() -> AlgorithmOperations
fn default() -> AlgorithmOperations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlgorithmOperations
impl<'de> Deserialize<'de> for AlgorithmOperations
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 AlgorithmOperations
impl PartialEq for AlgorithmOperations
Source§fn eq(&self, other: &AlgorithmOperations) -> bool
fn eq(&self, other: &AlgorithmOperations) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AlgorithmOperations
impl Serialize for AlgorithmOperations
impl StructuralPartialEq for AlgorithmOperations
Auto Trait Implementations§
impl Freeze for AlgorithmOperations
impl RefUnwindSafe for AlgorithmOperations
impl Send for AlgorithmOperations
impl Sync for AlgorithmOperations
impl Unpin for AlgorithmOperations
impl UnsafeUnpin for AlgorithmOperations
impl UnwindSafe for AlgorithmOperations
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