Enum AiEvalOutcome
pub enum AiEvalOutcome {
Passed,
Failed,
Warning,
Inconclusive,
Error,
}Variants§
Implementations§
§impl AiEvalOutcome
impl AiEvalOutcome
pub const ALL: &'static [AiEvalOutcome]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for AiEvalOutcome
impl Clone for AiEvalOutcome
§fn clone(&self) -> AiEvalOutcome
fn clone(&self) -> AiEvalOutcome
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 AiEvalOutcome
impl Debug for AiEvalOutcome
§impl Display for AiEvalOutcome
impl Display for AiEvalOutcome
§impl FromStr for AiEvalOutcome
impl FromStr for AiEvalOutcome
§type Err = AiEvalError
type Err = AiEvalError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<AiEvalOutcome, <AiEvalOutcome as FromStr>::Err>
fn from_str( value: &str, ) -> Result<AiEvalOutcome, <AiEvalOutcome as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for AiEvalOutcome
impl Hash for AiEvalOutcome
§impl Ord for AiEvalOutcome
impl Ord for AiEvalOutcome
§impl PartialEq for AiEvalOutcome
impl PartialEq for AiEvalOutcome
§impl PartialOrd for AiEvalOutcome
impl PartialOrd for AiEvalOutcome
impl Copy for AiEvalOutcome
impl Eq for AiEvalOutcome
impl StructuralPartialEq for AiEvalOutcome
Auto Trait Implementations§
impl Freeze for AiEvalOutcome
impl RefUnwindSafe for AiEvalOutcome
impl Send for AiEvalOutcome
impl Sync for AiEvalOutcome
impl Unpin for AiEvalOutcome
impl UnsafeUnpin for AiEvalOutcome
impl UnwindSafe for AiEvalOutcome
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