Struct rustbus::connection::dispatch_conn::PathMatcher [−][src]
pub struct PathMatcher<UserData, UserError: Debug> { /* fields omitted */ }
Implementations
impl<UserData, UserError: Debug> PathMatcher<UserData, UserError>
[src]
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]
&mut self,
path_pattern: &str,
handler: Box<HandleFn<UserData, UserError>>
)
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):
- /io.killingspark/API/v1/ManagedObjects/1234/SetName
- /io.killingspark/API/v1/ManagedObjects/CoolID/SetName
- /io.killingspark/API/v1/ManagedObjects/1D5_4R3_FUN/SetName
pub fn get_match(
&mut self,
query: &str
) -> Option<(Matches, &mut HandleFn<UserData, UserError>)>
[src]
&mut self,
query: &str
) -> Option<(Matches, &mut HandleFn<UserData, UserError>)>