Struct pixiv::PixivRequest[][src]

pub struct PixivRequest { /* fields omitted */ }

Pixiv request. You can create this using PixivRequestBuilder::build. This is for if you wish to inspect the request before sending.

Methods

impl PixivRequest
[src]

Create a new PixivRequest. A PixivRequest is returned when calling build() on PixivRequestBuilder, so it is recommended you use that instead.

Get the method.

Get a mutable reference to the method.

Get the url.

Get a mutable reference to the url.

Get the headers.

Get a mutable reference to the headers.

Trait Implementations

impl Debug for PixivRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PixivRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations