Enum AiGroundingStatus
pub enum AiGroundingStatus {
Grounded,
PartiallyGrounded,
Ungrounded,
Unknown,
}Variants§
Implementations§
§impl AiGroundingStatus
impl AiGroundingStatus
pub const ALL: &'static [AiGroundingStatus]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for AiGroundingStatus
impl Clone for AiGroundingStatus
§fn clone(&self) -> AiGroundingStatus
fn clone(&self) -> AiGroundingStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for AiGroundingStatus
impl Debug for AiGroundingStatus
§impl Display for AiGroundingStatus
impl Display for AiGroundingStatus
§impl FromStr for AiGroundingStatus
impl FromStr for AiGroundingStatus
§type Err = AiContextError
type Err = AiContextError
The associated error which can be returned from parsing.
§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 more§impl Hash for AiGroundingStatus
impl Hash for AiGroundingStatus
§impl Ord for AiGroundingStatus
impl Ord for AiGroundingStatus
§fn cmp(&self, other: &AiGroundingStatus) -> Ordering
fn cmp(&self, other: &AiGroundingStatus) -> Ordering
1.21.0 · 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
§impl PartialEq for AiGroundingStatus
impl PartialEq for AiGroundingStatus
§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