Struct cryptoballot::Identifier [−][src]
pub struct Identifier { pub election_id: [u8; 15], pub transaction_type: TransactionType, pub unique_info: [u8; 16], }
Expand description
Transaction identifier
The identifier defines the election, transction-type, and a unique identifier.
TODO: Entire aligned-struct is 40 bytes, larger than our ideal Copy limit of 32 bytes We should combine election_id and tx_type and have utility functions
Fields
election_id: [u8; 15]
transaction_type: TransactionType
unique_info: [u8; 16]
Implementations
impl Identifier
[src]
impl Identifier
[src]pub fn new(
election_id: Identifier,
transaction_type: TransactionType,
unique_info: Option<[u8; 16]>
) -> Self
[src]
pub fn new(
election_id: Identifier,
transaction_type: TransactionType,
unique_info: Option<[u8; 16]>
) -> Self
[src]Creat a new Identifier
pub fn start(election_id: Identifier, transaction_type: TransactionType) -> Self
[src]
pub fn end(election_id: Identifier, transaction_type: TransactionType) -> Self
[src]
pub fn new_from_str_id(
election_id: &str,
transaction_type: TransactionType,
unique_info: Option<[u8; 16]>
) -> Option<Self>
[src]
pub fn new_from_str_id(
election_id: &str,
transaction_type: TransactionType,
unique_info: Option<[u8; 16]>
) -> Option<Self>
[src]Creat a new Identifier from an election-id string Returns None when election_id is invalid
pub fn to_array(&self) -> [u8; 32]
[src]
pub fn to_bytes(&self) -> Vec<u8>
[src]
pub fn election_id_string(&self) -> String
[src]
Trait Implementations
impl Clone for Identifier
[src]
impl Clone for Identifier
[src]fn clone(&self) -> Identifier
[src]
fn clone(&self) -> Identifier
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for Identifier
[src]
impl Debug for Identifier
[src]impl<'de> Deserialize<'de> for Identifier
[src]
impl<'de> Deserialize<'de> for Identifier
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Display for Identifier
[src]
impl Display for Identifier
[src]impl FromStr for Identifier
[src]
impl FromStr for Identifier
[src]impl Hash for Identifier
[src]
impl Hash for Identifier
[src]impl Ord for Identifier
[src]
impl Ord for Identifier
[src]impl PartialEq<Identifier> for Identifier
[src]
impl PartialEq<Identifier> for Identifier
[src]fn eq(&self, other: &Identifier) -> bool
[src]
fn eq(&self, other: &Identifier) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &Identifier) -> bool
[src]
fn ne(&self, other: &Identifier) -> bool
[src]This method tests for !=
.
impl PartialOrd<Identifier> for Identifier
[src]
impl PartialOrd<Identifier> for Identifier
[src]fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Serialize for Identifier
[src]
impl Serialize for Identifier
[src]impl Copy for Identifier
[src]
impl Eq for Identifier
[src]
impl StructuralEq for Identifier
[src]
impl StructuralPartialEq for Identifier
[src]
Auto Trait Implementations
impl RefUnwindSafe for Identifier
impl Send for Identifier
impl Sync for Identifier
impl Unpin for Identifier
impl UnwindSafe for Identifier
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Pointable for T
[src]
impl<T> Pointable for T
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,