pub struct CombatLogEntry {
pub msg_id: i64,
pub player_name: String,
pub won: bool,
pub battle_type: CombatMessageType,
pub time: DateTime<Local>,
}
Fields§
§msg_id: i64
§player_name: String
§won: bool
§battle_type: CombatMessageType
§time: DateTime<Local>
Trait Implementations§
Source§impl Clone for CombatLogEntry
impl Clone for CombatLogEntry
Source§fn clone(&self) -> CombatLogEntry
fn clone(&self) -> CombatLogEntry
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 CombatLogEntry
impl Debug for CombatLogEntry
Source§impl<'de> Deserialize<'de> for CombatLogEntry
impl<'de> Deserialize<'de> for CombatLogEntry
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 CombatLogEntry
impl RefUnwindSafe for CombatLogEntry
impl Send for CombatLogEntry
impl Sync for CombatLogEntry
impl Unpin for CombatLogEntry
impl UnwindSafe for CombatLogEntry
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