pub enum ModelLifecycle {
Active,
Preview,
Deprecated,
Retired,
}Expand description
Lifecycle state for a model identifier.
Variants§
Active
Generally available and suitable for production defaults.
Preview
Available as a preview and subject to shorter lifecycle guarantees.
Deprecated
Still available in at least one supported tier, but migration is recommended.
Retired
No longer available on the provider surface represented by the entry.
Trait Implementations§
Source§impl Clone for ModelLifecycle
impl Clone for ModelLifecycle
Source§fn clone(&self) -> ModelLifecycle
fn clone(&self) -> ModelLifecycle
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 moreimpl Copy for ModelLifecycle
Source§impl Debug for ModelLifecycle
impl Debug for ModelLifecycle
Source§impl<'de> Deserialize<'de> for ModelLifecycle
impl<'de> Deserialize<'de> for ModelLifecycle
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
impl Eq for ModelLifecycle
Source§impl PartialEq for ModelLifecycle
impl PartialEq for ModelLifecycle
Source§impl Serialize for ModelLifecycle
impl Serialize for ModelLifecycle
impl StructuralPartialEq for ModelLifecycle
Auto Trait Implementations§
impl Freeze for ModelLifecycle
impl RefUnwindSafe for ModelLifecycle
impl Send for ModelLifecycle
impl Sync for ModelLifecycle
impl Unpin for ModelLifecycle
impl UnsafeUnpin for ModelLifecycle
impl UnwindSafe for ModelLifecycle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.