pub struct VotingKeyDto(pub [u8; 32]);
Expand description
Voting key.
Tuple Fields§
§0: [u8; 32]
Implementations§
Source§impl VotingKeyDto
impl VotingKeyDto
pub const LENGTH: usize = 32usize
Sourcepub fn get_voting_key(&self) -> [u8; 32]
pub fn get_voting_key(&self) -> [u8; 32]
Sourcepub fn serializer(&self) -> Vec<u8> ⓘ
pub fn serializer(&self) -> Vec<u8> ⓘ
Sourcepub fn from_binary(src: &[u8]) -> Self
pub fn from_binary(src: &[u8]) -> Self
Trait Implementations§
Source§impl Clone for VotingKeyDto
impl Clone for VotingKeyDto
Source§fn clone(&self) -> VotingKeyDto
fn clone(&self) -> VotingKeyDto
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 VotingKeyDto
impl Debug for VotingKeyDto
impl Copy for VotingKeyDto
Auto Trait Implementations§
impl Freeze for VotingKeyDto
impl RefUnwindSafe for VotingKeyDto
impl Send for VotingKeyDto
impl Sync for VotingKeyDto
impl Unpin for VotingKeyDto
impl UnwindSafe for VotingKeyDto
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