pub struct RandomSeed(pub [u8; 32]);Expand description
A random seed value derived from consensus.
This is a newtype wrapper around u64 that provides type safety for random seed values
used in block execution and transaction processing.
Tuple Fields§
§0: [u8; 32]Trait Implementations§
Source§impl Clone for RandomSeed
impl Clone for RandomSeed
Source§fn clone(&self) -> RandomSeed
fn clone(&self) -> RandomSeed
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RandomSeed
impl Debug for RandomSeed
Source§impl Default for RandomSeed
impl Default for RandomSeed
Source§fn default() -> RandomSeed
fn default() -> RandomSeed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RandomSeed
impl<'de> Deserialize<'de> for RandomSeed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RandomSeed> for u64
impl From<RandomSeed> for u64
Source§fn from(seed: RandomSeed) -> Self
fn from(seed: RandomSeed) -> Self
Converts to this type from the input type.
Source§impl From<u64> for RandomSeed
impl From<u64> for RandomSeed
Source§impl PartialEq for RandomSeed
impl PartialEq for RandomSeed
Source§fn eq(&self, other: &RandomSeed) -> bool
fn eq(&self, other: &RandomSeed) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RandomSeed
impl Serialize for RandomSeed
impl Copy for RandomSeed
impl Eq for RandomSeed
impl StructuralPartialEq for RandomSeed
Auto Trait Implementations§
impl Freeze for RandomSeed
impl RefUnwindSafe for RandomSeed
impl Send for RandomSeed
impl Sync for RandomSeed
impl Unpin for RandomSeed
impl UnsafeUnpin for RandomSeed
impl UnwindSafe for RandomSeed
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.