Skip to main content

Fault

Enum Fault 

Source
pub enum Fault {
Show 18 variants TopNotMapping, MissingName, MissingSteps, UnknownTopFields(Vec<String>), MissingStepName, UnknownStepFields(Vec<String>), BadStepExecutor { got: String, }, CriteriaNotList, CriterionNotMapping, BadCriterionExecutor, UnknownCriterionFields(Vec<String>), RuleNeedsJudgement, ContainsNeedsFile, FileNeedsContains, OnlyOneJudgement, NeedsDescription { kind: String, }, NoRuleFields { kind: String, given: Vec<String>, }, UnknownPlaceholder(Vec<String>),
}
Expand description

这一条错在哪,带上渲染所需的取值。

Variants§

§

TopNotMapping

定义顶层不是映射。

§

MissingName

顶层少了 name。

§

MissingSteps

顶层少了 steps(至少一个步骤)。

§

UnknownTopFields(Vec<String>)

顶层有不认识的字段。

§

MissingStepName

步骤少了 name(步骤不是映射也算)。

§

UnknownStepFields(Vec<String>)

步骤有不认识的字段。

§

BadStepExecutor

步骤的 executor 越界。

Fields

§

CriteriaNotList

步骤的 criteria 不是列表。

§

CriterionNotMapping

判据不是映射。

§

BadCriterionExecutor

判据的 executor 越界。

§

UnknownCriterionFields(Vec<String>)

判据有不认识的字段。

§

RuleNeedsJudgement

判据是 rule,却没写判法。

§

ContainsNeedsFile

写了 contains,没写 file。

§

FileNeedsContains

写了 file,没写 contains。

§

OnlyOneJudgement

判法混着写:只能一种。

§

NeedsDescription

判据是 agent / human,却没写 description。

Fields

§kind: String
§

NoRuleFields

判据是 agent / human,却带了 rule 的字段。

Fields

§kind: String
§given: Vec<String>
§

UnknownPlaceholder(Vec<String>)

判据的路径里写了不认识的占位。

Implementations§

Source§

impl Fault

Source

pub fn text(&self) -> String

位置之后的那一句(canonical 文案的尾巴)。

Trait Implementations§

Source§

impl Clone for Fault

Source§

fn clone(&self) -> Fault

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Fault

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Fault

Source§

impl PartialEq for Fault

Source§

fn eq(&self, other: &Fault) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Fault

Auto Trait Implementations§

§

impl Freeze for Fault

§

impl RefUnwindSafe for Fault

§

impl Send for Fault

§

impl Sync for Fault

§

impl Unpin for Fault

§

impl UnsafeUnpin for Fault

§

impl UnwindSafe for Fault

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.