pub struct BulkPairing {
pub id: String,
pub games: Vec<BulkPairingGame>,
pub variant: VariantKey,
pub clock: ArenaClock,
pub pair_at: i64,
pub paired_at: Option<i64>,
pub rated: bool,
pub start_clocks_at: i64,
pub scheduled_at: i64,
}Fields§
§id: String§games: Vec<BulkPairingGame>§variant: VariantKey§clock: ArenaClock§pair_at: i64§paired_at: Option<i64>§rated: bool§start_clocks_at: i64§scheduled_at: i64Trait Implementations§
Source§impl Clone for BulkPairing
impl Clone for BulkPairing
Source§fn clone(&self) -> BulkPairing
fn clone(&self) -> BulkPairing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BulkPairing
impl Debug for BulkPairing
Source§impl<'de> Deserialize<'de> for BulkPairing
impl<'de> Deserialize<'de> for BulkPairing
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 BulkPairing
impl RefUnwindSafe for BulkPairing
impl Send for BulkPairing
impl Sync for BulkPairing
impl Unpin for BulkPairing
impl UnsafeUnpin for BulkPairing
impl UnwindSafe for BulkPairing
Blanket Implementations§
impl<B> BodyBounds for Bwhere
B: Serialize,
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