pub struct SignatureContentV0 {
pub commits: Vec<ObjectId>,
}
Expand description
A Threshold Signature content
Fields§
§commits: Vec<ObjectId>
list of all the “end of chain” commit for each branch when doing a SyncSignature, or a list of arbitrary commits to sign, for AsyncSignature.
Trait Implementations§
Source§impl Clone for SignatureContentV0
impl Clone for SignatureContentV0
Source§fn clone(&self) -> SignatureContentV0
fn clone(&self) -> SignatureContentV0
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 SignatureContentV0
impl Debug for SignatureContentV0
Source§impl<'de> Deserialize<'de> for SignatureContentV0
impl<'de> Deserialize<'de> for SignatureContentV0
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 SignatureContentV0
impl PartialEq for SignatureContentV0
Source§impl Serialize for SignatureContentV0
impl Serialize for SignatureContentV0
impl Eq for SignatureContentV0
impl StructuralPartialEq for SignatureContentV0
Auto Trait Implementations§
impl Freeze for SignatureContentV0
impl RefUnwindSafe for SignatureContentV0
impl Send for SignatureContentV0
impl Sync for SignatureContentV0
impl Unpin for SignatureContentV0
impl UnwindSafe for SignatureContentV0
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