pub struct Achievement {
pub name: String,
pub description: String,
pub unlocked: Option<i64>,
}Fields§
§name: String§description: String§unlocked: Option<i64>Trait Implementations§
Source§impl Clone for Achievement
impl Clone for Achievement
Source§fn clone(&self) -> Achievement
fn clone(&self) -> Achievement
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for Achievement
impl RefUnwindSafe for Achievement
impl Send for Achievement
impl Sync for Achievement
impl Unpin for Achievement
impl UnwindSafe for Achievement
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