pub struct PersonalStatsCrimesV1 {
pub total: i32,
pub sell_illegal_goods: i32,
pub theft: i32,
pub auto_theft: i32,
pub drug_deals: i32,
pub computer: i32,
pub fraud: i32,
pub murder: i32,
pub other: i32,
pub organized_crimes: i32,
pub version: String,
}
Fields§
§total: i32
§sell_illegal_goods: i32
§theft: i32
§auto_theft: i32
§drug_deals: i32
§computer: i32
§fraud: i32
§murder: i32
§other: i32
§organized_crimes: i32
§version: String
Trait Implementations§
Source§impl Clone for PersonalStatsCrimesV1
impl Clone for PersonalStatsCrimesV1
Source§fn clone(&self) -> PersonalStatsCrimesV1
fn clone(&self) -> PersonalStatsCrimesV1
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 PersonalStatsCrimesV1
impl Debug for PersonalStatsCrimesV1
Source§impl<'de> Deserialize<'de> for PersonalStatsCrimesV1
impl<'de> Deserialize<'de> for PersonalStatsCrimesV1
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 PartialEq for PersonalStatsCrimesV1
impl PartialEq for PersonalStatsCrimesV1
impl StructuralPartialEq for PersonalStatsCrimesV1
Auto Trait Implementations§
impl Freeze for PersonalStatsCrimesV1
impl RefUnwindSafe for PersonalStatsCrimesV1
impl Send for PersonalStatsCrimesV1
impl Sync for PersonalStatsCrimesV1
impl Unpin for PersonalStatsCrimesV1
impl UnwindSafe for PersonalStatsCrimesV1
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