pub enum AiModelLifecycleStage {
Experimental,
Preview,
Stable,
Deprecated,
Retired,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AiModelLifecycleStage
impl Clone for AiModelLifecycleStage
Source§fn clone(&self) -> AiModelLifecycleStage
fn clone(&self) -> AiModelLifecycleStage
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 AiModelLifecycleStage
impl Debug for AiModelLifecycleStage
Source§impl Display for AiModelLifecycleStage
impl Display for AiModelLifecycleStage
Source§impl FromStr for AiModelLifecycleStage
impl FromStr for AiModelLifecycleStage
Source§type Err = AiModelError
type Err = AiModelError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<AiModelLifecycleStage, <AiModelLifecycleStage as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiModelLifecycleStage, <AiModelLifecycleStage as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiModelLifecycleStage
impl Hash for AiModelLifecycleStage
Source§impl Ord for AiModelLifecycleStage
impl Ord for AiModelLifecycleStage
Source§fn cmp(&self, other: &AiModelLifecycleStage) -> Ordering
fn cmp(&self, other: &AiModelLifecycleStage) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AiModelLifecycleStage
impl PartialEq for AiModelLifecycleStage
Source§fn eq(&self, other: &AiModelLifecycleStage) -> bool
fn eq(&self, other: &AiModelLifecycleStage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiModelLifecycleStage
impl PartialOrd for AiModelLifecycleStage
impl Copy for AiModelLifecycleStage
impl Eq for AiModelLifecycleStage
impl StructuralPartialEq for AiModelLifecycleStage
Auto Trait Implementations§
impl Freeze for AiModelLifecycleStage
impl RefUnwindSafe for AiModelLifecycleStage
impl Send for AiModelLifecycleStage
impl Sync for AiModelLifecycleStage
impl Unpin for AiModelLifecycleStage
impl UnsafeUnpin for AiModelLifecycleStage
impl UnwindSafe for AiModelLifecycleStage
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