pub struct CollectionGameItem {
pub game: CollectionGame,
pub position: u64,
pub user_id: UserID,
pub created_at: OffsetDateTime,
}Fields§
§game: CollectionGame§position: u64§user_id: UserID§created_at: OffsetDateTimeTrait Implementations§
Source§impl Clone for CollectionGameItem
impl Clone for CollectionGameItem
Source§fn clone(&self) -> CollectionGameItem
fn clone(&self) -> CollectionGameItem
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 CollectionGameItem
impl Debug for CollectionGameItem
Source§impl<'de> Deserialize<'de> for CollectionGameItem
impl<'de> Deserialize<'de> for CollectionGameItem
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 CollectionGameItem
impl PartialEq for CollectionGameItem
Source§impl Serialize for CollectionGameItem
impl Serialize for CollectionGameItem
impl StructuralPartialEq for CollectionGameItem
Auto Trait Implementations§
impl Freeze for CollectionGameItem
impl RefUnwindSafe for CollectionGameItem
impl Send for CollectionGameItem
impl Sync for CollectionGameItem
impl Unpin for CollectionGameItem
impl UnwindSafe for CollectionGameItem
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