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

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

Chains one interceptor with another, invoking them in declaration order.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Modify the request head in any way desired. Read more

Write debug output equivalent to std::fmt::Debug.

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

Chain self with two more interceptors. Read more

Auto Trait Implementations

impl<I1, I2> Send for Chain<I1, I2> where
    I1: Send,
    I2: Send

impl<I1, I2> Sync for Chain<I1, I2> where
    I1: Sync,
    I2: Sync