#![deny(missing_docs)] and lots of documentation
This commit is contained in:
parent
6628d12e13
commit
c56676a601
6 changed files with 83 additions and 4 deletions
|
|
@ -1,8 +1,11 @@
|
|||
use openssl::error::ErrorStack;
|
||||
|
||||
/// A wrapper enum for things that could go wrong in this crate.
|
||||
#[derive(Debug)]
|
||||
pub enum Error {
|
||||
/// An error in OpenSSL.
|
||||
OpenSslErrorStack(ErrorStack),
|
||||
/// An error in a SASL mechanism.
|
||||
SaslError(String),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue