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<&'_ str>
pub fn function(&self) -> Option<&'_ 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()