Enum curl::easy::SeekResult
[−]
[src]
pub enum SeekResult {
Ok,
Fail,
CantSeek,
// some variants omitted
}Possible return values from the seek_function callback.
Variants
OkIndicates that the seek operation was a success
FailIndicates that the seek operation failed, and the entire request should fail as a result.
CantSeekIndicates that although the seek failed libcurl should attempt to keep working if possible (for example "seek" through reading).