1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/// Response packet to server
/// [`Ping`](../server/struct.ping.html)s.
#[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Pong {
	/// The ping number, should correspond
	/// to the `num` field within in the
	/// [`Ping`](../server/ping.html) packet
	/// sent by the server.
	pub num: u32,
}