Enum curl::easy::SeekResult [] [src]

pub enum SeekResult {
    Ok,
    Fail,
    CantSeek,
    // some variants omitted
}

Possible return values from the seek_function callback.

Variants

Indicates that the seek operation was a success

Indicates that the seek operation failed, and the entire request should fail as a result.

Indicates that although the seek failed libcurl should attempt to keep working if possible (for example "seek" through reading).

Trait Implementations

impl Debug for SeekResult
[src]

Formats the value using the given formatter.