Implement Clone for openssl::error::ErrorStack
This commit is contained in:
parent
4d4292a3b0
commit
5e08ad0085
|
|
@ -7,7 +7,7 @@ use std::str;
|
||||||
|
|
||||||
use ffi;
|
use ffi;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct ErrorStack(Vec<Error>);
|
pub struct ErrorStack(Vec<Error>);
|
||||||
|
|
||||||
impl ErrorStack {
|
impl ErrorStack {
|
||||||
|
|
@ -61,6 +61,7 @@ impl From<ErrorStack> for fmt::Error {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// An error reported from OpenSSL.
|
/// An error reported from OpenSSL.
|
||||||
|
#[derive(Clone)]
|
||||||
pub struct Error(c_ulong);
|
pub struct Error(c_ulong);
|
||||||
|
|
||||||
impl Error {
|
impl Error {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue