[][src]Struct livesplit_core::run::editor::FuzzyList

pub struct FuzzyList { /* fields omitted */ }

With a Fuzzy List, you can implement a fuzzy searching algorithm. The list stores all the items that can be searched for. With the search method you can then execute the actual fuzzy search which returns a list of all the elements found. This can be used to implement searching in a list of games.

Examples

use livesplit_core::run::editor::FuzzyList;
let mut list = FuzzyList::new();
list.push("Hello");
list.push("World");
assert_eq!(list.search("ORL", 10), ["World"]);

Methods

impl FuzzyList[src]

pub fn new() -> Self[src]

Creates a new Fuzzy List.

pub fn push(&mut self, element: &str)[src]

Adds a new element to the list.

pub fn search<'a>(&'a self, pattern: &str, max: usize) -> Vec<&'a str>[src]

Searches for the pattern provided in the list. A list of all the matching elements is returned. The returned list has a maximum amount of elements provided to this method.

Trait Implementations

impl Default for FuzzyList[src]

Auto Trait Implementations

impl Send for FuzzyList

impl Sync for FuzzyList

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.