Struct dredd_hooks::IntegrationServer [] [src]

pub struct IntegrationServer {
    pub runners: Arc<RwLock<Vec<(usize, Child)>>>,
    // some fields omitted
}

Server that handles the integration between dredd and the individual hook servers.

Usually doesn't have to be used directly. Use the dredd-hooks-rust binary invoked by dredd instead.

Fields

Methods

impl IntegrationServer
[src]

Trait Implementations

impl Clone for IntegrationServer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Service for IntegrationServer
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

Process the request and return the response asynchronously.