Enum ReasoningStepKind
pub enum ReasoningStepKind {
Observe,
Decompose,
Infer,
Retrieve,
Calculate,
Compare,
Verify,
Reflect,
Decide,
Explain,
Custom,
}Variants§
Implementations§
§impl ReasoningStepKind
impl ReasoningStepKind
pub const ALL: &'static [ReasoningStepKind]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for ReasoningStepKind
impl Clone for ReasoningStepKind
§fn clone(&self) -> ReasoningStepKind
fn clone(&self) -> ReasoningStepKind
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 ReasoningStepKind
impl Debug for ReasoningStepKind
§impl Display for ReasoningStepKind
impl Display for ReasoningStepKind
§impl FromStr for ReasoningStepKind
impl FromStr for ReasoningStepKind
§type Err = ReasoningError
type Err = ReasoningError
The associated error which can be returned from parsing.
§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 more§impl Hash for ReasoningStepKind
impl Hash for ReasoningStepKind
§impl Ord for ReasoningStepKind
impl Ord for ReasoningStepKind
§fn cmp(&self, other: &ReasoningStepKind) -> Ordering
fn cmp(&self, other: &ReasoningStepKind) -> 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 ReasoningStepKind
impl PartialEq for ReasoningStepKind
§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