pub struct ReportStats {
pub strength: Option<i64>,
pub speed: Option<i64>,
pub dexterity: Option<i64>,
pub defense: Option<i64>,
pub total: Option<i64>,
}
Fields§
§strength: Option<i64>
§speed: Option<i64>
§dexterity: Option<i64>
§defense: Option<i64>
§total: Option<i64>
Trait Implementations§
Source§impl Clone for ReportStats
impl Clone for ReportStats
Source§fn clone(&self) -> ReportStats
fn clone(&self) -> ReportStats
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 ReportStats
impl Debug for ReportStats
Source§impl<'de> Deserialize<'de> for ReportStats
impl<'de> Deserialize<'de> for ReportStats
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
Source§impl From<ReportStats> for Report
impl From<ReportStats> for Report
Source§fn from(value: ReportStats) -> Self
fn from(value: ReportStats) -> Self
Converts to this type from the input type.
Source§impl From<ReportStats> for Report
impl From<ReportStats> for Report
Source§fn from(value: ReportStats) -> Self
fn from(value: ReportStats) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReportStats
impl PartialEq for ReportStats
impl StructuralPartialEq for ReportStats
Auto Trait Implementations§
impl Freeze for ReportStats
impl RefUnwindSafe for ReportStats
impl Send for ReportStats
impl Sync for ReportStats
impl Unpin for ReportStats
impl UnwindSafe for ReportStats
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