pub struct ClientChangeAction {
pub online_status: u8,
pub description: String,
pub beatmap_md5: String,
pub mods: u32,
pub mode: u8,
pub beatmap_id: i32,
}Fields§
§online_status: u8§description: String§beatmap_md5: String§mods: u32§mode: u8§beatmap_id: i32Trait Implementations§
Source§impl BanchoPacketRead<ClientChangeAction> for ClientChangeAction
impl BanchoPacketRead<ClientChangeAction> for ClientChangeAction
fn read(reader: &mut PayloadReader<'_>) -> Option<ClientChangeAction>
Source§impl Clone for ClientChangeAction
impl Clone for ClientChangeAction
Source§fn clone(&self) -> ClientChangeAction
fn clone(&self) -> ClientChangeAction
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 ClientChangeAction
impl Debug for ClientChangeAction
Source§impl Default for ClientChangeAction
impl Default for ClientChangeAction
Source§fn default() -> ClientChangeAction
fn default() -> ClientChangeAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClientChangeAction
impl<'de> Deserialize<'de> for ClientChangeAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClientChangeAction
impl RefUnwindSafe for ClientChangeAction
impl Send for ClientChangeAction
impl Sync for ClientChangeAction
impl Unpin for ClientChangeAction
impl UnwindSafe for ClientChangeAction
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