pub struct BlockSignature {
pub node_id_short: HashBytes,
pub signature: Signature,
}Expand description
Block signature pair.
Fields§
§node_id_short: HashBytesSigner node short id.
signature: SignatureSignature data.
Trait Implementations§
Source§impl Clone for BlockSignature
impl Clone for BlockSignature
Source§fn clone(&self) -> BlockSignature
fn clone(&self) -> BlockSignature
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlockSignature
impl Debug for BlockSignature
Source§impl<'tlb> Load<'tlb> for BlockSignature
impl<'tlb> Load<'tlb> for BlockSignature
Source§impl Serialize for BlockSignature
impl Serialize for BlockSignature
Source§impl Store for BlockSignature
impl Store for BlockSignature
Source§fn store_into(
&self,
__builder: &mut CellBuilder,
__context: &dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __context: &dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
Auto Trait Implementations§
impl Freeze for BlockSignature
impl RefUnwindSafe for BlockSignature
impl Send for BlockSignature
impl Sync for BlockSignature
impl Unpin for BlockSignature
impl UnwindSafe for BlockSignature
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