pub struct ProcessingStrategy {
pub name: String,
pub pattern: String,
pub handler: StrategyHandler,
}Expand description
Processing strategy definition
Fields§
§name: StringStrategy name
pattern: StringPattern to match queries
handler: StrategyHandlerHandler for this strategy
Trait Implementations§
Source§impl Clone for ProcessingStrategy
impl Clone for ProcessingStrategy
Source§fn clone(&self) -> ProcessingStrategy
fn clone(&self) -> ProcessingStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ProcessingStrategy
impl RefUnwindSafe for ProcessingStrategy
impl Send for ProcessingStrategy
impl Sync for ProcessingStrategy
impl Unpin for ProcessingStrategy
impl UnwindSafe for ProcessingStrategy
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