Struct data_encoding::Array128
[−]
[src]
pub struct Array128(_);
Convenience wrapper for [u8; 128]
Behaves as [u8; 128] through Deref and DerefMut, but also
implements Clone and other traits.
Trait Implementations
impl Deref for Array128[src]
type Target = [u8; 128]
The resulting type after dereferencing
fn deref(&self) -> &Self::Target
The method called to dereference a value
impl DerefMut for Array128[src]
impl Clone for Array128[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for Array128[src]
impl Debug for Array128[src]
impl PartialEq for Array128[src]
fn eq(&self, other: &Self) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.