pub struct SyncIter {
pub player_id: u64,
pub player_name: String,
pub slot: usize,
pub event: SyncEvent,
pub kind: i16,
pub variables: HashMap<String, Value>,
}Expand description
A return value from an iterator containing data about a Sync from another player
Fields§
§player_id: u64§player_name: String§slot: usize§event: SyncEvent§kind: i16§variables: HashMap<String, Value>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncIter
impl RefUnwindSafe for SyncIter
impl Send for SyncIter
impl Sync for SyncIter
impl Unpin for SyncIter
impl UnwindSafe for SyncIter
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