pub struct ReadyToAward {
pub user_id: i64,
pub first_name: String,
pub last_name: String,
pub advancement_type: String,
pub advancement_name: String,
pub date_completed: Option<String>,
}Fields§
§user_id: i64§first_name: String§last_name: String§advancement_type: String§advancement_name: String§date_completed: Option<String>Implementations§
Source§impl ReadyToAward
impl ReadyToAward
Trait Implementations§
Source§impl Clone for ReadyToAward
impl Clone for ReadyToAward
Source§fn clone(&self) -> ReadyToAward
fn clone(&self) -> ReadyToAward
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 moreSource§impl Debug for ReadyToAward
impl Debug for ReadyToAward
Source§impl<'de> Deserialize<'de> for ReadyToAward
impl<'de> Deserialize<'de> for ReadyToAward
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
Auto Trait Implementations§
impl Freeze for ReadyToAward
impl RefUnwindSafe for ReadyToAward
impl Send for ReadyToAward
impl Sync for ReadyToAward
impl Unpin for ReadyToAward
impl UnsafeUnpin for ReadyToAward
impl UnwindSafe for ReadyToAward
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