pub struct BaseKeyDelivery {
pub new_root: [u8; 32],
pub control_pk: Option<[u8; 32]>,
pub control_root: Option<[u8; 32]>,
}Expand description
What a base blob delivered (CORD-06 §1); the width declared the form.
Fields§
§new_root: [u8; 32]§control_pk: Option<[u8; 32]>The next epoch’s Control Plane address — absent on a legacy 72-byte blob, whose acceptor folds that epoch’s Control at the legacy member-derivable address instead (CORD-06 §3).
control_root: Option<[u8; 32]>The staff write secret (136-byte form only), already verified to derive
to control_pk.
Trait Implementations§
Source§impl Clone for BaseKeyDelivery
impl Clone for BaseKeyDelivery
Source§fn clone(&self) -> BaseKeyDelivery
fn clone(&self) -> BaseKeyDelivery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BaseKeyDelivery
impl Debug for BaseKeyDelivery
impl Eq for BaseKeyDelivery
Source§impl PartialEq for BaseKeyDelivery
impl PartialEq for BaseKeyDelivery
impl StructuralPartialEq for BaseKeyDelivery
Auto Trait Implementations§
impl Freeze for BaseKeyDelivery
impl RefUnwindSafe for BaseKeyDelivery
impl Send for BaseKeyDelivery
impl Sync for BaseKeyDelivery
impl Unpin for BaseKeyDelivery
impl UnsafeUnpin for BaseKeyDelivery
impl UnwindSafe for BaseKeyDelivery
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more