Trait korero::http::Strategy[][src]

pub trait Strategy {
    type Type;
    fn method(&self) -> Method;
fn execute(&self) -> Self::Type; }

Associated Types

Type of data being returned.

Required methods

HTTP method.

Execute the Strategy.

Implementors