Struct curl::ShareError
source · [−]pub struct ShareError { /* private fields */ }
Expand description
An error returned from “share” operations.
This structure wraps a CURLSHcode
.
Implementations
sourceimpl ShareError
impl ShareError
sourcepub fn new(code: CURLSHcode) -> ShareError
pub fn new(code: CURLSHcode) -> ShareError
Creates a new error from the underlying code returned by libcurl.
sourcepub fn is_bad_option(&self) -> bool
pub fn is_bad_option(&self) -> bool
Returns whether this error corresponds to CURLSHE_BAD_OPTION.
sourcepub fn is_invalid(&self) -> bool
pub fn is_invalid(&self) -> bool
Returns whether this error corresponds to CURLSHE_INVALID.
sourcepub fn code(&self) -> CURLSHcode
pub fn code(&self) -> CURLSHcode
Returns the value of the underlying error corresponding to libcurl.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns curl’s human-readable version of this error.
Trait Implementations
sourceimpl Clone for ShareError
impl Clone for ShareError
sourcefn clone(&self) -> ShareError
fn clone(&self) -> ShareError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ShareError
impl Debug for ShareError
sourceimpl Display for ShareError
impl Display for ShareError
sourceimpl Error for ShareError
impl Error for ShareError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourcefn from(e: ShareError) -> Error
fn from(e: ShareError) -> Error
Converts to this type from the input type.
sourcefn eq(&self, other: &ShareError) -> bool
fn eq(&self, other: &ShareError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ShareError) -> bool
fn ne(&self, other: &ShareError) -> bool
This method tests for !=
.
impl StructuralPartialEq for ShareError
Auto Trait Implementations
impl RefUnwindSafe for ShareError
impl Send for ShareError
impl Sync for ShareError
impl Unpin for ShareError
impl UnwindSafe for ShareError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more