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

pub struct List { /* fields omitted */ }

A linked list of a strings

Methods

impl List[src]

pub fn new() -> List[src]

Creates a new empty list of strings.

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

Appends some data into this list.

Important traits for Iter<'a>
pub fn iter(&self) -> Iter[src]

Returns an iterator over the nodes in this list.

Trait Implementations

impl Drop for List[src]

impl<'a> IntoIterator for &'a List[src]

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?

type Item = &'a [u8]

The type of the elements being iterated over.

impl Send for List[src]

impl Debug for List[src]

Auto Trait Implementations

impl !Sync for List

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.