pub struct ErrorStack(/* private fields */);Expand description
A snapshot of all records that were on the thread-local OpenSSL error queue.
Returned as the Err variant of every Result<T, ErrorStack> in this crate.
The queue is cleared when this is constructed.
Implementations§
Source§impl ErrorStack
impl ErrorStack
Trait Implementations§
Source§impl Clone for ErrorStack
impl Clone for ErrorStack
Source§fn clone(&self) -> ErrorStack
fn clone(&self) -> ErrorStack
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ErrorStack
impl Debug for ErrorStack
Source§impl Display for ErrorStack
impl Display for ErrorStack
Source§impl Error for ErrorStack
impl Error for ErrorStack
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()
Auto Trait Implementations§
impl Freeze for ErrorStack
impl RefUnwindSafe for ErrorStack
impl Send for ErrorStack
impl Sync for ErrorStack
impl Unpin for ErrorStack
impl UnwindSafe for ErrorStack
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