Struct floresta_chain::pruned_utreexo::udata::UtreexoBlock
source · pub struct UtreexoBlock {
pub block: Block,
pub udata: Option<UData>,
}
Expand description
A block plus some udata
Fields§
§block: Block
A actual block
udata: Option<UData>
The utreexo specific data
Trait Implementations§
source§impl Clone for UtreexoBlock
impl Clone for UtreexoBlock
source§fn clone(&self) -> UtreexoBlock
fn clone(&self) -> UtreexoBlock
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 UtreexoBlock
impl Debug for UtreexoBlock
source§impl Decodable for UtreexoBlock
impl Decodable for UtreexoBlock
source§impl From<Block> for UtreexoBlock
impl From<Block> for UtreexoBlock
source§impl From<UtreexoBlock> for Block
impl From<UtreexoBlock> for Block
source§fn from(block: UtreexoBlock) -> Self
fn from(block: UtreexoBlock) -> Self
Converts to this type from the input type.
source§impl PartialEq<UtreexoBlock> for UtreexoBlock
impl PartialEq<UtreexoBlock> for UtreexoBlock
source§fn eq(&self, other: &UtreexoBlock) -> bool
fn eq(&self, other: &UtreexoBlock) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for UtreexoBlock
impl StructuralEq for UtreexoBlock
impl StructuralPartialEq for UtreexoBlock
Auto Trait Implementations§
impl RefUnwindSafe for UtreexoBlock
impl Send for UtreexoBlock
impl Sync for UtreexoBlock
impl Unpin for UtreexoBlock
impl UnwindSafe for UtreexoBlock
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