pub struct TornRacket {
pub name: String,
pub level: i32,
pub description: String,
pub reward: TornRacketReward,
pub created_at: i32,
pub changed_at: i32,
}
Fields§
§name: String
§level: i32
§description: String
§reward: TornRacketReward
§created_at: i32
§changed_at: i32
Trait Implementations§
Source§impl Clone for TornRacket
impl Clone for TornRacket
Source§fn clone(&self) -> TornRacket
fn clone(&self) -> TornRacket
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 TornRacket
impl Debug for TornRacket
Source§impl<'de> Deserialize<'de> for TornRacket
impl<'de> Deserialize<'de> for TornRacket
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 TornRacket
impl PartialEq for TornRacket
impl StructuralPartialEq for TornRacket
Auto Trait Implementations§
impl Freeze for TornRacket
impl RefUnwindSafe for TornRacket
impl Send for TornRacket
impl Sync for TornRacket
impl Unpin for TornRacket
impl UnwindSafe for TornRacket
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