pub enum AiModelDeploymentKind {
HostedApi,
SelfHosted,
Local,
Edge,
Browser,
Embedded,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AiModelDeploymentKind
impl Clone for AiModelDeploymentKind
Source§fn clone(&self) -> AiModelDeploymentKind
fn clone(&self) -> AiModelDeploymentKind
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 AiModelDeploymentKind
impl Debug for AiModelDeploymentKind
Source§impl Display for AiModelDeploymentKind
impl Display for AiModelDeploymentKind
Source§impl FromStr for AiModelDeploymentKind
impl FromStr for AiModelDeploymentKind
Source§type Err = AiModelError
type Err = AiModelError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<AiModelDeploymentKind, <AiModelDeploymentKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiModelDeploymentKind, <AiModelDeploymentKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiModelDeploymentKind
impl Hash for AiModelDeploymentKind
Source§impl Ord for AiModelDeploymentKind
impl Ord for AiModelDeploymentKind
Source§fn cmp(&self, other: &AiModelDeploymentKind) -> Ordering
fn cmp(&self, other: &AiModelDeploymentKind) -> 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 AiModelDeploymentKind
impl PartialEq for AiModelDeploymentKind
Source§fn eq(&self, other: &AiModelDeploymentKind) -> bool
fn eq(&self, other: &AiModelDeploymentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiModelDeploymentKind
impl PartialOrd for AiModelDeploymentKind
impl Copy for AiModelDeploymentKind
impl Eq for AiModelDeploymentKind
impl StructuralPartialEq for AiModelDeploymentKind
Auto Trait Implementations§
impl Freeze for AiModelDeploymentKind
impl RefUnwindSafe for AiModelDeploymentKind
impl Send for AiModelDeploymentKind
impl Sync for AiModelDeploymentKind
impl Unpin for AiModelDeploymentKind
impl UnsafeUnpin for AiModelDeploymentKind
impl UnwindSafe for AiModelDeploymentKind
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