pub enum EntityEventMessageAction {
Publish,
Unpublish,
EnableDelegation,
EnableDelegationResponse,
DisableDelegation,
RequestAuthority(u16),
ReleaseAuthority,
UpdateAuthority(EntityAuthStatus),
EntityMigrateResponse(u16),
}Variants§
Publish
Unpublish
EnableDelegation
EnableDelegationResponse
DisableDelegation
RequestAuthority(u16)
ReleaseAuthority
UpdateAuthority(EntityAuthStatus)
EntityMigrateResponse(u16)
Implementations§
Source§impl EntityEventMessageAction
impl EntityEventMessageAction
pub fn to_response_event<E: Copy>(&self, entity: &E) -> EntityResponseEvent<E>
Trait Implementations§
Source§impl Clone for EntityEventMessageAction
impl Clone for EntityEventMessageAction
Source§fn clone(&self) -> EntityEventMessageAction
fn clone(&self) -> EntityEventMessageAction
Returns a duplicate of the value. Read more
1.0.0 · 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 EntityEventMessageAction
impl Debug for EntityEventMessageAction
Source§impl PartialEq for EntityEventMessageAction
impl PartialEq for EntityEventMessageAction
Source§impl Serde for EntityEventMessageAction
impl Serde for EntityEventMessageAction
impl StructuralPartialEq for EntityEventMessageAction
Auto Trait Implementations§
impl Freeze for EntityEventMessageAction
impl RefUnwindSafe for EntityEventMessageAction
impl Send for EntityEventMessageAction
impl Sync for EntityEventMessageAction
impl Unpin for EntityEventMessageAction
impl UnwindSafe for EntityEventMessageAction
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