pub enum SyncEvent {
Snapshot(WorldSnapshot),
Delta(Delta),
SnapshotRequested,
Ack(u64),
Ping,
Pong,
SchemaSync(Vec<ComponentSchemaInfo>),
Error {
code: u32,
message: String,
},
}Variants§
Snapshot(WorldSnapshot)
Delta(Delta)
SnapshotRequested
Ack(u64)
Ping
Pong
SchemaSync(Vec<ComponentSchemaInfo>)
Error
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncEvent
impl RefUnwindSafe for SyncEvent
impl Send for SyncEvent
impl Sync for SyncEvent
impl Unpin for SyncEvent
impl UnwindSafe for SyncEvent
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