pub struct Rule<'a> {
pub name: &'a str,
pub application: fn(&Expression, &SymbolTable) -> Result<RuleEffect, ApplicationError>,
pub rule_sets: &'a [(&'a str, u16)],
pub prefilters: Option<&'static [RulePrefilter]>,
pub failure_invalidation: RuleFailureInvalidation,
}Expand description
A rule with a name, application function, and rule sets.
§Fields
nameThe name of the rule.applicationThe function to apply the rule.rule_setsA list of rule set names and priorities that this rule is a part of. This is used to populate rulesets at runtime.
Fields§
§name: &'a str§application: fn(&Expression, &SymbolTable) -> Result<RuleEffect, ApplicationError>§rule_sets: &'a [(&'a str, u16)]§prefilters: Option<&'static [RulePrefilter]>Complete prefilter alternatives this rule applies to, or None for universal rules.
failure_invalidation: RuleFailureInvalidationWhich state changes can make a failed application become applicable.
Implementations§
Source§impl<'a> Rule<'a>
impl<'a> Rule<'a>
pub const fn new( name: &'a str, application: fn(&Expression, &SymbolTable) -> Result<RuleEffect, ApplicationError>, rule_sets: &'a [(&'static str, u16)], ) -> Rule<'a>
pub fn apply( &self, expr: &Expression, symbols: &SymbolTable, ) -> Result<RuleEffect, ApplicationError>
Trait Implementations§
impl Collect for &'static Rule<'static>
impl Eq for Rule<'_>
Auto Trait Implementations§
impl<'a> Freeze for Rule<'a>
impl<'a> RefUnwindSafe for Rule<'a>
impl<'a> Send for Rule<'a>
impl<'a> Sync for Rule<'a>
impl<'a> Unpin for Rule<'a>
impl<'a> UnsafeUnpin for Rule<'a>
impl<'a> UnwindSafe for Rule<'a>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘwhere
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘwhere
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 64 bytes