Struct openssl::error::ErrorStack
source · [−]pub struct ErrorStack(_);
Expand description
Collection of Error
s from OpenSSL.
Implementations
sourceimpl ErrorStack
impl ErrorStack
sourcepub fn get() -> ErrorStack
pub fn get() -> ErrorStack
Returns the contents of the OpenSSL error stack.
sourceimpl ErrorStack
impl ErrorStack
Trait Implementations
sourceimpl Clone for ErrorStack
impl Clone for ErrorStack
sourcefn clone(&self) -> ErrorStack
fn clone(&self) -> ErrorStack
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ErrorStack
impl Debug for ErrorStack
sourceimpl Display for ErrorStack
impl Display for ErrorStack
sourceimpl Error for ErrorStack
impl Error for ErrorStack
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
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<ErrorStack> for Error
impl From<ErrorStack> for Error
sourcefn from(e: ErrorStack) -> Error
fn from(e: ErrorStack) -> Error
Converts to this type from the input type.
sourceimpl From<ErrorStack> for Error
impl From<ErrorStack> for Error
sourcefn from(_: ErrorStack) -> Error
fn from(_: ErrorStack) -> Error
Converts to this type from the input type.
sourceimpl From<ErrorStack> for Error
impl From<ErrorStack> for Error
sourcefn from(e: ErrorStack) -> Error
fn from(e: ErrorStack) -> Error
Converts to this type from the input type.
sourceimpl<S> From<ErrorStack> for HandshakeError<S>
impl<S> From<ErrorStack> for HandshakeError<S>
sourcefn from(e: ErrorStack) -> HandshakeError<S>
fn from(e: ErrorStack) -> HandshakeError<S>
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ErrorStack
impl Send for ErrorStack
impl Sync for ErrorStack
impl Unpin for ErrorStack
impl UnwindSafe for ErrorStack
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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