pub struct AiModelFamily(/* private fields */);Implementations§
Source§impl AiModelFamily
impl AiModelFamily
Trait Implementations§
Source§impl AsRef<str> for AiModelFamily
impl AsRef<str> for AiModelFamily
Source§impl Clone for AiModelFamily
impl Clone for AiModelFamily
Source§fn clone(&self) -> AiModelFamily
fn clone(&self) -> AiModelFamily
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 AiModelFamily
impl Debug for AiModelFamily
Source§impl Display for AiModelFamily
impl Display for AiModelFamily
Source§impl FromStr for AiModelFamily
impl FromStr for AiModelFamily
Source§type Err = AiModelError
type Err = AiModelError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<AiModelFamily, <AiModelFamily as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiModelFamily, <AiModelFamily as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AiModelFamily
impl Hash for AiModelFamily
Source§impl Ord for AiModelFamily
impl Ord for AiModelFamily
Source§fn cmp(&self, other: &AiModelFamily) -> Ordering
fn cmp(&self, other: &AiModelFamily) -> 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 AiModelFamily
impl PartialEq for AiModelFamily
Source§fn eq(&self, other: &AiModelFamily) -> bool
fn eq(&self, other: &AiModelFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AiModelFamily
impl PartialOrd for AiModelFamily
Source§impl TryFrom<&str> for AiModelFamily
impl TryFrom<&str> for AiModelFamily
Source§type Error = AiModelError
type Error = AiModelError
The type returned in the event of a conversion error.
Source§fn try_from(
value: &str,
) -> Result<AiModelFamily, <AiModelFamily as TryFrom<&str>>::Error>
fn try_from( value: &str, ) -> Result<AiModelFamily, <AiModelFamily as TryFrom<&str>>::Error>
Performs the conversion.
impl Eq for AiModelFamily
impl StructuralPartialEq for AiModelFamily
Auto Trait Implementations§
impl Freeze for AiModelFamily
impl RefUnwindSafe for AiModelFamily
impl Send for AiModelFamily
impl Sync for AiModelFamily
impl Unpin for AiModelFamily
impl UnsafeUnpin for AiModelFamily
impl UnwindSafe for AiModelFamily
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