wrap_request_handler

Macro wrap_request_handler 

Source
macro_rules! wrap_request_handler {
    ($ vis : vis struct $ name : ident ; impl RequestHandler { $ ($ (# [$ attrs_name : meta]) * fn $ method_name : ident (& $ self : ident $ (, $ arg_name : ident : $ arg_type : ty) * $ (,) ?) $ (-> $ return_type : ty) ? { $ ($ body : tt) * }) * }) => { ... };
    ($ vis : vis struct $ name : ident $ (< $ ($ generic_type : ident : $ first_generic_type_bound : tt $ (+ $ generic_type_bound : tt) *) , + $ (,) ? >) ? { $ ($ field_vis : vis $ field_name : ident : $ field_type : ty) , * $ (,) ? } impl RequestHandler { $ ($ (# [$ attrs_name : meta]) * fn $ method_name : ident (& $ self : ident $ (, $ arg_name : ident : $ arg_type : ty) * $ (,) ?) $ (-> $ return_type : ty) ? { $ ($ body : tt) * }) * }) => { ... };
}
Expand description

Implement the WrapRequestHandler trait for the specified struct. You can declare more members for your struct, and in the impl RequestHandler block you can override default methods implemented by the ImplRequestHandler trait.

ยงExample


wrap_request_handler! {
    struct MyRequestHandler {
        payload: String,
    }

    impl RequestHandler {
        // ...
    }
}

fn make_my_struct() -> RequestHandler {
    MyRequestHandler::new("payload".to_string())
}