Skip to content

Commit

Permalink
proto: fix lint"
Browse files Browse the repository at this point in the history
"
  • Loading branch information
leshow committed Mar 8, 2021
1 parent 2220445 commit 1e3ffb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/proto/src/error.rs
Expand Up @@ -332,7 +332,7 @@ pub mod not_openssl {
use std;

/// SslErrorStac stub
#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
pub struct SslErrorStack;

impl std::fmt::Display for SslErrorStack {
Expand Down
3 changes: 2 additions & 1 deletion crates/proto/src/rr/dnssec/ec_public_key.rs
Expand Up @@ -8,7 +8,8 @@
use super::Algorithm;
use crate::error::*;

#[derive(Debug, Clone, Copy)]
#[derive(Debug, Clone)]
#[allow(missing_copy_implementations)]
pub struct ECPublicKey {
buf: [u8; MAX_LEN],
len: usize,
Expand Down

0 comments on commit 1e3ffb6

Please sign in to comment.