Struct nlprule::rule::Rule[][src]

pub struct Rule { /* fields omitted */ }

A grammar rule. Returns a Suggestion for change if it matches. Sourced from LanguageTool. An example of how a simple rule might look in the original XML format:

<rule id="DOSNT" name="he dosn't (doesn't)">
    <pattern>
        <token regexp="yes">do[se]n|does|dosan|doasn|dosen</token>
        <token regexp="yes">['’`´‘]</token>
        <token>t</token>
    </pattern>
    <message>Did you mean <suggestion>doesn\2t</suggestion>?</message>
    <example correction="doesn't">He <marker>dosn't</marker> know about it.</example>
</rule>

Implementations

impl Rule[src]

pub fn enable(&mut self)[src]

Hints that this rule should be enabled.

pub fn disable(&mut self)[src]

Hints that this rule should be disabled.

pub fn enabled(&self) -> bool[src]

Hints whether the rule should be enabled in a rule set.

pub fn id(&self) -> &Index[src]

Get a unique identifier of this rule.

pub fn short(&self) -> Option<&str>[src]

Gets a short text describing this rule e.g. “Possible typo” if there is one.

pub fn url(&self) -> Option<&str>[src]

Gets an url with more information about this rule if there is one.

pub fn examples(&self) -> &[Example][src]

Gets the examples associated with this rule.

pub fn name(&self) -> &str[src]

Gets a human-readable name of this rule.

pub fn category_name(&self) -> &str[src]

Gets a human-readable name of the category this rule is in.

pub fn category_type(&self) -> Option<&str>[src]

Gets the type of the category this rule is in e. g. “style” or “grammar”.

pub fn test(&self, tokenizer: &Tokenizer) -> bool[src]

Grammar rules always have at least one example associated with them. This method checks whether the correct action is taken in the examples.

Trait Implementations

impl Clone for Rule[src]

impl Debug for Rule[src]

impl<'de> Deserialize<'de> for Rule[src]

impl Display for Rule[src]

impl Serialize for Rule[src]

Auto Trait Implementations

impl RefUnwindSafe for Rule

impl Send for Rule

impl Sync for Rule

impl Unpin for Rule

impl UnwindSafe for Rule

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.