pub enum RagGroundingStatus {
Grounded,
PartiallyGrounded,
Ungrounded,
Conflicting,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RagGroundingStatus
impl Clone for RagGroundingStatus
Source§fn clone(&self) -> RagGroundingStatus
fn clone(&self) -> RagGroundingStatus
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 RagGroundingStatus
impl Debug for RagGroundingStatus
Source§impl Display for RagGroundingStatus
impl Display for RagGroundingStatus
Source§impl FromStr for RagGroundingStatus
impl FromStr for RagGroundingStatus
Source§impl Hash for RagGroundingStatus
impl Hash for RagGroundingStatus
Source§impl Ord for RagGroundingStatus
impl Ord for RagGroundingStatus
Source§fn cmp(&self, other: &RagGroundingStatus) -> Ordering
fn cmp(&self, other: &RagGroundingStatus) -> 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 RagGroundingStatus
impl PartialEq for RagGroundingStatus
Source§fn eq(&self, other: &RagGroundingStatus) -> bool
fn eq(&self, other: &RagGroundingStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RagGroundingStatus
impl PartialOrd for RagGroundingStatus
impl Copy for RagGroundingStatus
impl Eq for RagGroundingStatus
impl StructuralPartialEq for RagGroundingStatus
Auto Trait Implementations§
impl Freeze for RagGroundingStatus
impl RefUnwindSafe for RagGroundingStatus
impl Send for RagGroundingStatus
impl Sync for RagGroundingStatus
impl Unpin for RagGroundingStatus
impl UnsafeUnpin for RagGroundingStatus
impl UnwindSafe for RagGroundingStatus
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