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