pub enum SyncSignature {
V0(ObjectRef),
}
Expand description
Sync Threshold Signature of one or a chain of commits . V0
points to the new Signature Object based on the total order quorum (or owners quorum) mandatory for UpdateRootBranch, UpdateBranch, some AddBranch, RemoveBranch, RemoveMember, RemovePermission, Quorum, Compact, sync Transaction, RootCapRefresh, BranchCapRefresh DEPS: the last signed commit in chain ACKS: previous head before the chain of signed commit(s). should be identical to the HEADS (marked as DEPS) of first commit in chain
Variants§
Implementations§
Source§impl SyncSignature
impl SyncSignature
Trait Implementations§
Source§impl Clone for SyncSignature
impl Clone for SyncSignature
Source§fn clone(&self) -> SyncSignature
fn clone(&self) -> SyncSignature
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 SyncSignature
impl Debug for SyncSignature
Source§impl<'de> Deserialize<'de> for SyncSignature
impl<'de> Deserialize<'de> for SyncSignature
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 Display for SyncSignature
impl Display for SyncSignature
Source§impl PartialEq for SyncSignature
impl PartialEq for SyncSignature
Source§impl Serialize for SyncSignature
impl Serialize for SyncSignature
impl Eq for SyncSignature
impl StructuralPartialEq for SyncSignature
Auto Trait Implementations§
impl Freeze for SyncSignature
impl RefUnwindSafe for SyncSignature
impl Send for SyncSignature
impl Sync for SyncSignature
impl Unpin for SyncSignature
impl UnwindSafe for SyncSignature
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