pub struct GuildBuyClientPacket {
pub session_id: i32,
pub gold_amount: i32,
}Expand description
Deposit gold in to the guild bank
Fields§
§session_id: i32§gold_amount: i32Implementations§
Trait Implementations§
Source§impl Clone for GuildBuyClientPacket
impl Clone for GuildBuyClientPacket
Source§fn clone(&self) -> GuildBuyClientPacket
fn clone(&self) -> GuildBuyClientPacket
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 GuildBuyClientPacket
impl Debug for GuildBuyClientPacket
Source§impl Default for GuildBuyClientPacket
impl Default for GuildBuyClientPacket
Source§fn default() -> GuildBuyClientPacket
fn default() -> GuildBuyClientPacket
Returns the “default value” for a type. Read more
Source§impl EoSerialize for GuildBuyClientPacket
impl EoSerialize for GuildBuyClientPacket
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a GuildBuyClientPacket into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a GuildBuyClientPacket from an EoReader instance
Source§impl PartialEq for GuildBuyClientPacket
impl PartialEq for GuildBuyClientPacket
impl Eq for GuildBuyClientPacket
impl StructuralPartialEq for GuildBuyClientPacket
Auto Trait Implementations§
impl Freeze for GuildBuyClientPacket
impl RefUnwindSafe for GuildBuyClientPacket
impl Send for GuildBuyClientPacket
impl Sync for GuildBuyClientPacket
impl Unpin for GuildBuyClientPacket
impl UnsafeUnpin for GuildBuyClientPacket
impl UnwindSafe for GuildBuyClientPacket
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