Enum hyper_scripter::fuzzy::FuzzResult[][src]

pub enum FuzzResult<T> {
    High(T),
    Low(T),
    Multi {
        ans: T,
        others: Vec<T>,
        still_others: Vec<T>,
    },
}

Variants

High(T)

Tuple Fields of High

0: T
Low(T)

Tuple Fields of Low

0: T
Multi

Fields of Multi

ans: Tothers: Vec<T>still_others: Vec<T>

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.