pub enum ClientRequestError {
ValgrindPrintError(FromVecWithNulError),
}
Available on crate feature
client_requests_defs
only.Expand description
The ClientRequestError
Variants§
ValgrindPrintError(FromVecWithNulError)
The error when printing with valgrind’s VALGRIND_PRINTF
fails
Trait Implementations§
source§impl Debug for ClientRequestError
impl Debug for ClientRequestError
source§impl Display for ClientRequestError
impl Display for ClientRequestError
source§impl Error for ClientRequestError
impl Error for ClientRequestError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<FromVecWithNulError> for ClientRequestError
impl From<FromVecWithNulError> for ClientRequestError
source§fn from(value: FromVecWithNulError) -> Self
fn from(value: FromVecWithNulError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClientRequestError
impl RefUnwindSafe for ClientRequestError
impl Send for ClientRequestError
impl Sync for ClientRequestError
impl Unpin for ClientRequestError
impl UnwindSafe for ClientRequestError
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