Struct curl::easy::Form [] [src]

pub struct Form { /* fields omitted */ }

Multipart/formdata for an HTTP POST request.

This structure is built up and then passed to the Easy::httppost method to be sent off with a request.

Methods

impl Form
[src]

Creates a new blank form ready for the addition of new data.

Prepares adding a new part to this Form

Note that the part is not actually added to the form until the add method is called on Part, which may or may not fail.

Trait Implementations

impl Debug for Form
[src]

Formats the value using the given formatter.

impl Drop for Form
[src]

A method called when the value goes out of scope. Read more