pub enum Registered {
Created,
AlreadyIdentical,
}Expand description
Whether a registration created the channel or found it already identical.
Distinguishable on purpose: a projector’s truth stream reports which one it saw, and “already identical” is the answer that makes re-projection safe.
Variants§
Created
The channel was not on the roster and now is.
AlreadyIdentical
The channel was already on the roster with an identical configuration; nothing was built and nothing changed.
Trait Implementations§
Source§impl Clone for Registered
impl Clone for Registered
Source§fn clone(&self) -> Registered
fn clone(&self) -> Registered
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 Registered
Source§impl Debug for Registered
impl Debug for Registered
impl Eq for Registered
Source§impl PartialEq for Registered
impl PartialEq for Registered
impl StructuralPartialEq for Registered
Auto Trait Implementations§
impl Freeze for Registered
impl RefUnwindSafe for Registered
impl Send for Registered
impl Sync for Registered
impl Unpin for Registered
impl UnsafeUnpin for Registered
impl UnwindSafe for Registered
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.