pub struct SignatureSet {
pub vote: VoteType,
pub signer: String,
pub transaction_hash: [u8; 32],
pub signatures: Value,
pub authority: String,
}Fields§
§vote: VoteType§signer: String§transaction_hash: [u8; 32]§signatures: ValueTrait Implementations§
Source§impl Clone for SignatureSet
impl Clone for SignatureSet
Source§fn clone(&self) -> SignatureSet
fn clone(&self) -> SignatureSet
Returns a duplicate 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 SignatureSet
impl Debug for SignatureSet
Source§impl<'de> Deserialize<'de> for SignatureSet
impl<'de> Deserialize<'de> for SignatureSet
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 PartialEq for SignatureSet
impl PartialEq for SignatureSet
Source§impl Serialize for SignatureSet
impl Serialize for SignatureSet
impl StructuralPartialEq for SignatureSet
Auto Trait Implementations§
impl Freeze for SignatureSet
impl RefUnwindSafe for SignatureSet
impl Send for SignatureSet
impl Sync for SignatureSet
impl Unpin for SignatureSet
impl UnsafeUnpin for SignatureSet
impl UnwindSafe for SignatureSet
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