Struct anterofit::net::intercept::Chain [] [src]

pub struct Chain<I1, I2>(_, _);

Chains two interceptors together, invoking the first, then the second.

Trait Implementations

impl<I1: Interceptor, I2: Interceptor> Interceptor for Chain<I1, I2>
[src]

Modify the request headers in any way desired. Read more

Chain self with other, invoking self then other for each request.