pub enum ChannelState {
Active,
Paused,
Draining,
Closed,
Archived,
SilentCommunion,
HiveMode,
PendingConsent,
}Expand description
Operational state of a channel.
Variants§
Active
Channel is active and fully operational.
Paused
Channel is paused — no new messages can be sent or received.
Draining
Channel is draining — receives are allowed but sends are blocked.
Closed
Channel is closed — all operations are blocked.
Archived
Channel is archived — read-only but searchable.
SilentCommunion
Shared semantic space without words.
HiveMode
Merged consciousness state.
PendingConsent
Awaiting participant consent.
Trait Implementations§
Source§impl Clone for ChannelState
impl Clone for ChannelState
Source§fn clone(&self) -> ChannelState
fn clone(&self) -> ChannelState
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 ChannelState
Source§impl Debug for ChannelState
impl Debug for ChannelState
Source§impl Default for ChannelState
impl Default for ChannelState
Source§impl<'de> Deserialize<'de> for ChannelState
impl<'de> Deserialize<'de> for ChannelState
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 Display for ChannelState
impl Display for ChannelState
impl Eq for ChannelState
Source§impl PartialEq for ChannelState
impl PartialEq for ChannelState
Source§impl Serialize for ChannelState
impl Serialize for ChannelState
impl StructuralPartialEq for ChannelState
Auto Trait Implementations§
impl Freeze for ChannelState
impl RefUnwindSafe for ChannelState
impl Send for ChannelState
impl Sync for ChannelState
impl Unpin for ChannelState
impl UnsafeUnpin for ChannelState
impl UnwindSafe for ChannelState
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