[][src]Trait tower_h2::server::Modify

pub trait Modify {
    fn modify(&mut self, request: &mut Request<()>);
}

Modify a received request

Required methods

fn modify(&mut self, request: &mut Request<()>)

Modify a request before calling the service.

Loading content...

Implementations on Foreign Types

impl Modify for ()[src]

Loading content...

Implementors

impl<T> Modify for T where
    T: FnMut(&mut Request<()>), 
[src]

Loading content...