pub enum BindingState {
Detached,
Bound(ActiveBinding),
PendingFinalization(PendingFinalization),
}Expand description
Binding-slot state; pending finalization carries no live authority.
Variants§
Detached
No binding or pending terminal exists.
Bound(ActiveBinding)
Current live binding authority.
PendingFinalization(PendingFinalization)
Authority ended and a cause-partitioned terminal record is pending.
Trait Implementations§
Source§impl Clone for BindingState
impl Clone for BindingState
Source§fn clone(&self) -> BindingState
fn clone(&self) -> BindingState
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 BindingState
Source§impl Debug for BindingState
impl Debug for BindingState
impl Eq for BindingState
Source§impl PartialEq for BindingState
impl PartialEq for BindingState
impl StructuralPartialEq for BindingState
Auto Trait Implementations§
impl Freeze for BindingState
impl RefUnwindSafe for BindingState
impl Send for BindingState
impl Sync for BindingState
impl Unpin for BindingState
impl UnsafeUnpin for BindingState
impl UnwindSafe for BindingState
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