Struct curl::easy::List [] [src]

pub struct List {
    // some fields omitted
}
[]

A linked list of a strings

Methods

impl List

fn new() -> List[]

Creates a new empty list of strings.

fn append(&mut self, data: &str) -> Result<(), Error>[]

Appends some data into this list.

fn iter(&self) -> Iter[]

Returns an iterator over the nodes in this list.

Trait Implementations

impl Send for List

impl Drop for List

fn drop(&mut self)