pub struct SignatureResolvingKey { /* private fields */ }
Implementations§
Source§impl SignatureResolvingKey
impl SignatureResolvingKey
Sourcepub fn new(
address: Address,
address_type: AddressType,
typ: SignatureResolvingKeyType,
value: [u8; 16],
) -> Self
pub fn new( address: Address, address_type: AddressType, typ: SignatureResolvingKeyType, value: [u8; 16], ) -> Self
Constructs a new SignatureResolvingKey
.
Source§impl SignatureResolvingKey
impl SignatureResolvingKey
pub fn address(&self) -> &Address
pub fn address_type(&self) -> &AddressType
pub fn typ(&self) -> &SignatureResolvingKeyType
pub fn value(&self) -> &[u8; 16]
Trait Implementations§
Source§impl Clone for SignatureResolvingKey
impl Clone for SignatureResolvingKey
Source§fn clone(&self) -> SignatureResolvingKey
fn clone(&self) -> SignatureResolvingKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SignatureResolvingKey
impl Debug for SignatureResolvingKey
Source§impl Pack for SignatureResolvingKey
impl Pack for SignatureResolvingKey
Auto Trait Implementations§
impl Freeze for SignatureResolvingKey
impl RefUnwindSafe for SignatureResolvingKey
impl Send for SignatureResolvingKey
impl Sync for SignatureResolvingKey
impl Unpin for SignatureResolvingKey
impl UnwindSafe for SignatureResolvingKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more