pub enum RoomState {
Dormant,
Active,
Validating,
Merging,
}Variants§
Dormant
Room is dormant, no active agents
Active
Agents are present and working
Validating
Knowledge is being validated/certified
Merging
Room is merging zeitgeist from another room
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RoomState
impl<'de> Deserialize<'de> for RoomState
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
impl Eq for RoomState
impl StructuralPartialEq for RoomState
Auto Trait Implementations§
impl Freeze for RoomState
impl RefUnwindSafe for RoomState
impl Send for RoomState
impl Sync for RoomState
impl Unpin for RoomState
impl UnsafeUnpin for RoomState
impl UnwindSafe for RoomState
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