pub struct AccessEnvelopeBody {
pub store_root_hash: ObjectHash,
pub candidate_family: CandidateFamilyId,
pub circle_id: CircleId,
pub owner_pubkey: String,
pub recipient_slot: String,
pub control_hash: ObjectHash,
pub leaf_id: AccessLeafId,
pub leaf_hash: ObjectHash,
pub value_hash: ObjectHash,
pub proof: Vec<MerkleStep>,
}Expand description
The wire body of one recipient’s access envelope. Every field here is signed.
Fields§
§store_root_hash: ObjectHash§candidate_family: CandidateFamilyId§circle_id: CircleId§owner_pubkey: String§recipient_slot: String§control_hash: ObjectHash§leaf_id: AccessLeafId§leaf_hash: ObjectHash§value_hash: ObjectHash§proof: Vec<MerkleStep>Trait Implementations§
Source§impl Clone for AccessEnvelopeBody
impl Clone for AccessEnvelopeBody
Source§fn clone(&self) -> AccessEnvelopeBody
fn clone(&self) -> AccessEnvelopeBody
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 AccessEnvelopeBody
impl Debug for AccessEnvelopeBody
Source§impl<'de> Deserialize<'de> for AccessEnvelopeBody
impl<'de> Deserialize<'de> for AccessEnvelopeBody
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 AccessEnvelopeBody
impl PartialEq for AccessEnvelopeBody
Source§impl Serialize for AccessEnvelopeBody
impl Serialize for AccessEnvelopeBody
Source§impl SignedBody for AccessEnvelopeBody
impl SignedBody for AccessEnvelopeBody
impl Eq for AccessEnvelopeBody
impl StructuralPartialEq for AccessEnvelopeBody
Auto Trait Implementations§
impl Freeze for AccessEnvelopeBody
impl RefUnwindSafe for AccessEnvelopeBody
impl Send for AccessEnvelopeBody
impl Sync for AccessEnvelopeBody
impl Unpin for AccessEnvelopeBody
impl UnsafeUnpin for AccessEnvelopeBody
impl UnwindSafe for AccessEnvelopeBody
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.