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