pub struct QueryParamExactMatcher { /* private fields */ }Expand description
Match exactly the query parameter of a request.
Implementations§
Trait Implementations§
Source§impl Match for QueryParamExactMatcher
impl Match for QueryParamExactMatcher
Source§fn request_match(
&self,
_path: &str,
_headers: &HeaderMap,
query: &HashMap<String, String>,
) -> Option<bool>
fn request_match( &self, _path: &str, _headers: &HeaderMap, query: &HashMap<String, String>, ) -> Option<bool>
Check parameters available at connection initiation.
Source§fn unary_match(&self, message: &Message) -> Option<bool>
fn unary_match(&self, message: &Message) -> Option<bool>
Check single websocket messages in isolation.
Source§fn temporal_match(&self, match_state: &mut MatchState) -> Option<bool>
fn temporal_match(&self, match_state: &mut MatchState) -> Option<bool>
Check properties over multiple messages.
Auto Trait Implementations§
impl Freeze for QueryParamExactMatcher
impl RefUnwindSafe for QueryParamExactMatcher
impl Send for QueryParamExactMatcher
impl Sync for QueryParamExactMatcher
impl Unpin for QueryParamExactMatcher
impl UnwindSafe for QueryParamExactMatcher
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more