Struct rustbus::connection::dispatch_conn::PathMatcher[][src]

pub struct PathMatcher<UserData, UserError: Debug> { /* fields omitted */ }

Implementations

impl<UserData, UserError: Debug> PathMatcher<UserData, UserError>[src]

pub fn new() -> Self[src]

pub fn insert(
    &mut self,
    path_pattern: &str,
    handler: Box<HandleFn<UserData, UserError>>
)
[src]

A pattern describes how the different parts of the path should be used while matching object paths to handlers.

E.g. /io.killingspark/API/v1/ManagedObjects/:id/SetName will match all of the following (and provide the handler with “:id” in the matches):

  1. /io.killingspark/API/v1/ManagedObjects/1234/SetName
  2. /io.killingspark/API/v1/ManagedObjects/CoolID/SetName
  3. /io.killingspark/API/v1/ManagedObjects/1D5_4R3_FUN/SetName

pub fn get_match(
    &mut self,
    query: &str
) -> Option<(Matches, &mut HandleFn<UserData, UserError>)>
[src]

Trait Implementations

impl<UserData, UserError: Debug> Default for PathMatcher<UserData, UserError>[src]

Auto Trait Implementations

impl<UserData, UserError> !RefUnwindSafe for PathMatcher<UserData, UserError>

impl<UserData, UserError> !Send for PathMatcher<UserData, UserError>

impl<UserData, UserError> !Sync for PathMatcher<UserData, UserError>

impl<UserData, UserError> Unpin for PathMatcher<UserData, UserError>

impl<UserData, UserError> !UnwindSafe for PathMatcher<UserData, UserError>

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> 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.