Struct async_curl::async_curl_error::AsyncCurlError
source · pub struct AsyncCurlError(pub String);
Tuple Fields§
§0: String
Trait Implementations§
source§impl Debug for AsyncCurlError
impl Debug for AsyncCurlError
source§impl Display for AsyncCurlError
impl Display for AsyncCurlError
source§impl Error for AsyncCurlError
impl Error for AsyncCurlError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for AsyncCurlError
impl From<Error> for AsyncCurlError
source§impl From<MultiError> for AsyncCurlError
impl From<MultiError> for AsyncCurlError
This convert MultiError to our customized AsyncCurlError for ease of management of different errors from 3rd party crates.
source§fn from(err: MultiError) -> Self
fn from(err: MultiError) -> Self
Converts to this type from the input type.
source§impl From<RecvError> for AsyncCurlError
impl From<RecvError> for AsyncCurlError
This convert RecvError to our customized AsyncCurlError for ease of management of different errors from 3rd party crates.
Auto Trait Implementations§
impl RefUnwindSafe for AsyncCurlError
impl Send for AsyncCurlError
impl Sync for AsyncCurlError
impl Unpin for AsyncCurlError
impl UnwindSafe for AsyncCurlError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more