Loading openssl/src/error.rs +2 −2 Original line number Diff line number Diff line //! Errors returned by OpenSSL library. //! //! OpenSSL errors are stored in an `ErrorStack`. Most methods in the crate /// returns a `Result<T, ErrorStack>` type. //! returns a `Result<T, ErrorStack>` type. //! //! # Examples //! Loading @@ -11,7 +11,7 @@ //! //! let an_error = BigNum::from_dec_str("Cannot parse letters"); //! match an_error { //! Ok(_) => _, //! Ok(_) => (), //! Err(e) => println!("Parsing Error: {:?}", e), //! } //! ``` Loading Loading
openssl/src/error.rs +2 −2 Original line number Diff line number Diff line //! Errors returned by OpenSSL library. //! //! OpenSSL errors are stored in an `ErrorStack`. Most methods in the crate /// returns a `Result<T, ErrorStack>` type. //! returns a `Result<T, ErrorStack>` type. //! //! # Examples //! Loading @@ -11,7 +11,7 @@ //! //! let an_error = BigNum::from_dec_str("Cannot parse letters"); //! match an_error { //! Ok(_) => _, //! Ok(_) => (), //! Err(e) => println!("Parsing Error: {:?}", e), //! } //! ``` Loading