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

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

Possible return values from the seek_function callback.

Variants

Ok

Indicates that the seek operation was a success

Fail

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

CantSeek

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]

Auto Trait Implementations

impl Send for SeekResult

impl Sync for SeekResult

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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