Trait rustful::response::ResponseError [] [src]

pub trait ResponseError {
    fn handle(self);
}

Helper trait for dealing with errors that may occur while sending a response. It provides a default method of handling the error.

Required Methods

Handle the error to "make it go away".

Implementors