pub enum JobArtifactKind {
EVALUATION,
CUSTOM,
DATASET,
MODEL,
CHECKPOINT,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for JobArtifactKind
impl Clone for JobArtifactKind
Source§fn clone(&self) -> JobArtifactKind
fn clone(&self) -> JobArtifactKind
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 JobArtifactKind
impl Debug for JobArtifactKind
Source§impl<'de> Deserialize<'de> for JobArtifactKind
impl<'de> Deserialize<'de> for JobArtifactKind
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JobArtifactKind
impl RefUnwindSafe for JobArtifactKind
impl Send for JobArtifactKind
impl Sync for JobArtifactKind
impl Unpin for JobArtifactKind
impl UnsafeUnpin for JobArtifactKind
impl UnwindSafe for JobArtifactKind
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