pub enum EntityAuthChannelState {
Unpublished,
Published,
Delegated,
}Expand description
Publication/delegation lifecycle state of an entity’s authority channel.
Variants§
Unpublished
Entity has not yet been published (client default).
Published
Entity is published and visible to other users but not yet delegated.
Delegated
Authority delegation is active for this entity.
Trait Implementations§
Source§impl Clone for EntityAuthChannelState
impl Clone for EntityAuthChannelState
Source§fn clone(&self) -> EntityAuthChannelState
fn clone(&self) -> EntityAuthChannelState
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 moreSource§impl Debug for EntityAuthChannelState
impl Debug for EntityAuthChannelState
Source§impl PartialEq for EntityAuthChannelState
impl PartialEq for EntityAuthChannelState
Source§fn eq(&self, other: &EntityAuthChannelState) -> bool
fn eq(&self, other: &EntityAuthChannelState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EntityAuthChannelState
impl Eq for EntityAuthChannelState
impl StructuralPartialEq for EntityAuthChannelState
Auto Trait Implementations§
impl Freeze for EntityAuthChannelState
impl RefUnwindSafe for EntityAuthChannelState
impl Send for EntityAuthChannelState
impl Sync for EntityAuthChannelState
impl Unpin for EntityAuthChannelState
impl UnsafeUnpin for EntityAuthChannelState
impl UnwindSafe for EntityAuthChannelState
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