pub struct Error { /* private fields */ }
Expand description
An error reported from OpenSSL.
Implementations§
source§impl Error
impl Error
sourcepub fn library(&self) -> Option<&'static str>
pub fn library(&self) -> Option<&'static str>
Returns the name of the library reporting the error, if available.
sourcepub fn library_code(&self) -> c_int
pub fn library_code(&self) -> c_int
Returns the raw OpenSSL error constant for the library reporting the error.
sourcepub fn function(&self) -> Option<&'static str>
pub fn function(&self) -> Option<&'static str>
Returns the name of the function reporting the error.
sourcepub fn reason_code(&self) -> c_int
pub fn reason_code(&self) -> c_int
Returns the raw OpenSSL error constant for the reason for the error.
Trait Implementations§
source§impl Error for Error
impl Error for Error
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()
impl Send for Error
impl Sync for Error
Auto Trait Implementations§
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)