Skip to content

Commit 3e0e9eb

Browse files
Implement (derive) Copy for LocalRefInt and KeyLocalRef (#251)
1 parent 476b135 commit 3e0e9eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rust/rbac-registration/src/cardano/cip509/types/key_local_ref.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use strum_macros::FromRepr;
77
use crate::cardano::cip509::rbac::Cip509RbacMetadataInt;
88

99
/// Local key reference.
10-
#[derive(Debug, PartialEq, Clone)]
10+
#[derive(Debug, PartialEq, Clone, Copy)]
1111
pub struct KeyLocalRef {
1212
/// Local reference.
1313
pub local_ref: LocalRefInt,
@@ -16,7 +16,7 @@ pub struct KeyLocalRef {
1616
}
1717

1818
/// Enum of local reference with its associated unsigned integer value.
19-
#[derive(FromRepr, Debug, PartialEq, Clone, Eq, Hash)]
19+
#[derive(FromRepr, Debug, PartialEq, Clone, Copy, Eq, Hash)]
2020
#[repr(u8)]
2121
pub enum LocalRefInt {
2222
/// x509 certificates.

rust/rbac-registration/src/registration/cardano/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ fn update_role_data(
432432
.role_data
433433
.get(&number)
434434
.and_then(|pd| pd.data().signing_key())
435-
.cloned();
435+
.copied();
436436
data.set_signing_key(signing_key);
437437
}
438438

@@ -442,7 +442,7 @@ fn update_role_data(
442442
.role_data
443443
.get(&number)
444444
.and_then(|pd| pd.data().encryption_key())
445-
.cloned();
445+
.copied();
446446
data.set_encryption_key(encryption_key);
447447
}
448448

0 commit comments

Comments
 (0)