pub struct Game2StageStarting {
pub game_type: i32,
pub room_type: String,
pub count_down: i32,
pub game_objects: GameObjectsData,
}
Fields§
§game_type: i32
§room_type: String
§count_down: i32
§game_objects: GameObjectsData
Trait Implementations§
source§impl BaseParser for Game2StageStarting
impl BaseParser for Game2StageStarting
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for Game2StageStarting
impl Clone for Game2StageStarting
source§fn clone(&self) -> Game2StageStarting
fn clone(&self) -> Game2StageStarting
Returns a copy 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 Game2StageStarting
impl Debug for Game2StageStarting
source§impl Default for Game2StageStarting
impl Default for Game2StageStarting
source§fn default() -> Game2StageStarting
fn default() -> Game2StageStarting
Returns the “default value” for a type. Read more
source§impl PacketVariable for Game2StageStarting
impl PacketVariable for Game2StageStarting
source§impl PartialEq<Game2StageStarting> for Game2StageStarting
impl PartialEq<Game2StageStarting> for Game2StageStarting
source§fn eq(&self, other: &Game2StageStarting) -> bool
fn eq(&self, other: &Game2StageStarting) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Game2StageStarting
Auto Trait Implementations§
impl RefUnwindSafe for Game2StageStarting
impl Send for Game2StageStarting
impl Sync for Game2StageStarting
impl Unpin for Game2StageStarting
impl UnwindSafe for Game2StageStarting
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