pub struct AwardedPoint {
pub id: u32,
pub course_id: u32,
pub user_id: u32,
pub submission_id: u32,
pub name: String,
pub created_at: DateTime<FixedOffset>,
}Fields§
§id: u32§course_id: u32§user_id: u32§submission_id: u32§name: String§created_at: DateTime<FixedOffset>Trait Implementations§
Source§impl Debug for AwardedPoint
impl Debug for AwardedPoint
Source§impl<'de> Deserialize<'de> for AwardedPoint
impl<'de> Deserialize<'de> for AwardedPoint
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 AwardedPoint
impl RefUnwindSafe for AwardedPoint
impl Send for AwardedPoint
impl Sync for AwardedPoint
impl Unpin for AwardedPoint
impl UnwindSafe for AwardedPoint
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