pub struct OrdinaryBindingAuthorityRestore {
pub binding: ActiveBinding,
pub through_seq: DeliverySeq,
}Expand description
Raw predecessor fields for an ordinary-attach binding authority.
Raw fields are not executable provenance. Standalone restoration is absent: total participant-conversation restore must first prove an exact unfenced binding-origin capsule.
ⓘ
use liminal_protocol::lifecycle::OrdinaryBindingAuthorityRestore;
fn bypass(raw: OrdinaryBindingAuthorityRestore) {
let _ = raw.restore();
}Fields§
§binding: ActiveBindingExact binding installed by ordinary attach.
through_seq: DeliverySeqDurable no-marker cursor carried through the attach.
Trait Implementations§
Source§impl Clone for OrdinaryBindingAuthorityRestore
impl Clone for OrdinaryBindingAuthorityRestore
Source§fn clone(&self) -> OrdinaryBindingAuthorityRestore
fn clone(&self) -> OrdinaryBindingAuthorityRestore
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 moreimpl Copy for OrdinaryBindingAuthorityRestore
impl Eq for OrdinaryBindingAuthorityRestore
impl StructuralPartialEq for OrdinaryBindingAuthorityRestore
Auto Trait Implementations§
impl Freeze for OrdinaryBindingAuthorityRestore
impl RefUnwindSafe for OrdinaryBindingAuthorityRestore
impl Send for OrdinaryBindingAuthorityRestore
impl Sync for OrdinaryBindingAuthorityRestore
impl Unpin for OrdinaryBindingAuthorityRestore
impl UnsafeUnpin for OrdinaryBindingAuthorityRestore
impl UnwindSafe for OrdinaryBindingAuthorityRestore
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