Struct curl::ShareError
[−]
[src]
pub struct ShareError { // some fields omitted }
An error returned from "share" operations.
This structure wraps a CURLSHcode
.
Methods
impl ShareError
fn new(code: CURLSHcode) -> ShareError
Creates a new error from the underlying code returned by libcurl.
fn is_bad_option(&self) -> bool
Returns whether this error corresponds to CURLSHE_BAD_OPTION.
fn is_in_use(&self) -> bool
Returns whether this error corresponds to CURLSHE_IN_USE.
fn is_invalid(&self) -> bool
Returns whether this error corresponds to CURLSHE_INVALID.
fn is_nomem(&self) -> bool
Returns whether this error corresponds to CURLSHE_NOMEM.
fn code(&self) -> CURLSHcode
Returns the value of the underlying error corresponding to libcurl.