pub struct UserCrimeAttempts {
pub total: i32,
pub success: i32,
pub fail: i32,
pub critical_fail: i32,
pub subcrimes: Vec<UserSubcrime>,
}
Fields§
§total: i32
§success: i32
§fail: i32
§critical_fail: i32
§subcrimes: Vec<UserSubcrime>
Trait Implementations§
Source§impl Clone for UserCrimeAttempts
impl Clone for UserCrimeAttempts
Source§fn clone(&self) -> UserCrimeAttempts
fn clone(&self) -> UserCrimeAttempts
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 UserCrimeAttempts
impl Debug for UserCrimeAttempts
Source§impl<'de> Deserialize<'de> for UserCrimeAttempts
impl<'de> Deserialize<'de> for UserCrimeAttempts
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 UserCrimeAttempts
impl PartialEq for UserCrimeAttempts
impl StructuralPartialEq for UserCrimeAttempts
Auto Trait Implementations§
impl Freeze for UserCrimeAttempts
impl RefUnwindSafe for UserCrimeAttempts
impl Send for UserCrimeAttempts
impl Sync for UserCrimeAttempts
impl Unpin for UserCrimeAttempts
impl UnwindSafe for UserCrimeAttempts
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