pub trait SputnikBuilder {
    fn content_type(self, mime: Mime) -> Builder;
    fn set_cookie(self, cookie: Cookie) -> Builder;
}
Expand description

Adds convenience methods to Builder.

Required Methods

Sets the Content-Type.

Appends the Set-Cookie header.

Implementations on Foreign Types

Implementors