pub enum EntityOwner {
Server,
Client(UserKey),
ClientWaiting(UserKey),
ClientPublic(UserKey),
Local,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EntityOwner
impl Clone for EntityOwner
Source§fn clone(&self) -> EntityOwner
fn clone(&self) -> EntityOwner
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 EntityOwner
impl Debug for EntityOwner
Source§impl PartialEq for EntityOwner
impl PartialEq for EntityOwner
impl Copy for EntityOwner
impl Eq for EntityOwner
impl StructuralPartialEq for EntityOwner
Auto Trait Implementations§
impl Freeze for EntityOwner
impl RefUnwindSafe for EntityOwner
impl Send for EntityOwner
impl Sync for EntityOwner
impl Unpin for EntityOwner
impl UnwindSafe for EntityOwner
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