pub struct RewardChainBlock {Show 14 fields
pub weight: u128,
pub height: u32,
pub total_iters: u128,
pub signage_point_index: u8,
pub pos_ss_cc_challenge_hash: Bytes32,
pub proof_of_space: ProofOfSpace,
pub challenge_chain_sp_vdf: Option<VDFInfo>,
pub challenge_chain_sp_signature: G2Element,
pub challenge_chain_ip_vdf: VDFInfo,
pub reward_chain_sp_vdf: Option<VDFInfo>,
pub reward_chain_sp_signature: G2Element,
pub reward_chain_ip_vdf: VDFInfo,
pub infused_challenge_chain_ip_vdf: Option<VDFInfo>,
pub is_transaction_block: bool,
}Fields§
§weight: u128§height: u32§total_iters: u128§signage_point_index: u8§pos_ss_cc_challenge_hash: Bytes32§proof_of_space: ProofOfSpace§challenge_chain_sp_vdf: Option<VDFInfo>§challenge_chain_sp_signature: G2Element§challenge_chain_ip_vdf: VDFInfo§reward_chain_sp_vdf: Option<VDFInfo>§reward_chain_sp_signature: G2Element§reward_chain_ip_vdf: VDFInfo§infused_challenge_chain_ip_vdf: Option<VDFInfo>§is_transaction_block: boolImplementations§
Source§impl RewardChainBlock
impl RewardChainBlock
pub fn new( weight: u128, height: u32, total_iters: u128, signage_point_index: u8, pos_ss_cc_challenge_hash: Bytes32, proof_of_space: ProofOfSpace, challenge_chain_sp_vdf: Option<VDFInfo>, challenge_chain_sp_signature: G2Element, challenge_chain_ip_vdf: VDFInfo, reward_chain_sp_vdf: Option<VDFInfo>, reward_chain_sp_signature: G2Element, reward_chain_ip_vdf: VDFInfo, infused_challenge_chain_ip_vdf: Option<VDFInfo>, is_transaction_block: bool, ) -> RewardChainBlock
Source§impl RewardChainBlock
impl RewardChainBlock
pub fn get_unfinished(&self) -> RewardChainBlockUnfinished
Trait Implementations§
Source§impl Clone for RewardChainBlock
impl Clone for RewardChainBlock
Source§fn clone(&self) -> RewardChainBlock
fn clone(&self) -> RewardChainBlock
Returns a copy 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 RewardChainBlock
impl Debug for RewardChainBlock
Source§impl Hash for RewardChainBlock
impl Hash for RewardChainBlock
Source§impl PartialEq for RewardChainBlock
impl PartialEq for RewardChainBlock
Source§impl Streamable for RewardChainBlock
impl Streamable for RewardChainBlock
fn update_digest(&self, digest: &mut Sha256)
fn stream(&self, out: &mut Vec<u8>) -> Result<()>
fn parse<const TRUSTED: bool>(input: &mut Cursor<&[u8]>) -> Result<Self>
fn to_bytes(&self) -> Result<Vec<u8>, Error>
fn from_bytes(bytes: &[u8]) -> Result<Self, Error>where
Self: Sized,
fn from_bytes_unchecked(bytes: &[u8]) -> Result<Self, Error>where
Self: Sized,
fn hash(&self) -> [u8; 32]
impl Eq for RewardChainBlock
impl StructuralPartialEq for RewardChainBlock
Auto Trait Implementations§
impl Freeze for RewardChainBlock
impl RefUnwindSafe for RewardChainBlock
impl Send for RewardChainBlock
impl Sync for RewardChainBlock
impl Unpin for RewardChainBlock
impl UnwindSafe for RewardChainBlock
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.