pub struct PreparedStoreOperationCommon {
pub commit: StoreBatchCommit,
pub reference: StoreBatchCommitRef,
pub registration_activation: Option<ActivatedStoreDeviceRegistration>,
}Expand description
A signed commit and the exact object it is published as.
reference.object names that object; the commit’s bytes are what commit
serializes to, so they are not carried beside it. Whoever uploads rebuilds
them through PreparedExactObject::new, which re-checks them against the
reference on the way out.
Fields§
§commit: StoreBatchCommit§reference: StoreBatchCommitRef§registration_activation: Option<ActivatedStoreDeviceRegistration>Implementations§
Source§impl PreparedStoreOperationCommon
impl PreparedStoreOperationCommon
Sourcepub fn prepared_commit(
&self,
) -> Result<PreparedExactObject, PreparedCommitError>
pub fn prepared_commit( &self, ) -> Result<PreparedExactObject, PreparedCommitError>
The commit prepared for upload: its canonical bytes, re-derived from the value, under the exact reference the operation names.
Trait Implementations§
Source§impl Clone for PreparedStoreOperationCommon
impl Clone for PreparedStoreOperationCommon
Source§fn clone(&self) -> PreparedStoreOperationCommon
fn clone(&self) -> PreparedStoreOperationCommon
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 PreparedStoreOperationCommon
impl Debug for PreparedStoreOperationCommon
Source§impl<'de> Deserialize<'de> for PreparedStoreOperationCommon
impl<'de> Deserialize<'de> for PreparedStoreOperationCommon
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 PreparedStoreOperationCommon
impl PartialEq for PreparedStoreOperationCommon
Source§fn eq(&self, other: &PreparedStoreOperationCommon) -> bool
fn eq(&self, other: &PreparedStoreOperationCommon) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PreparedStoreOperationCommon
impl StructuralPartialEq for PreparedStoreOperationCommon
Auto Trait Implementations§
impl !Freeze for PreparedStoreOperationCommon
impl RefUnwindSafe for PreparedStoreOperationCommon
impl Send for PreparedStoreOperationCommon
impl Sync for PreparedStoreOperationCommon
impl Unpin for PreparedStoreOperationCommon
impl UnsafeUnpin for PreparedStoreOperationCommon
impl UnwindSafe for PreparedStoreOperationCommon
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.