Trait kinto_http::request::KintoRequest [] [src]

pub trait KintoRequest {
    fn preparer(&mut self) -> &mut RequestPreparer;

    fn if_match(&mut self, if_match: IfMatch) -> &mut Self { ... }
    fn if_none_match(&mut self, if_match: IfNoneMatch) -> &mut Self { ... }
    fn send(&mut self) -> Result<ResponseWrapper, KintoError> { ... }
}

Base trait with options shared with all kinto requests

Required Methods

Provided Methods

Set If-Match header.

Set If-None-Match header.

Send the request.

Implementors