//! Models for the endpoint "User Personal Records".
//!//! About the endpoint "User Personal Records",
//! see the [API document](https://tetr.io/about/api/#usersuserrecordsgamemodeleaderboard).
usecrate::model::prelude::*;/// An array of user personal records.
#[derive(Clone, Debug, Deserialize)]#[non_exhaustive]pubstructUserRecords{/// The matched records.
pubentries:Vec<Record>,
}implAsRef<UserRecords>forUserRecords{fnas_ref(&self)->&Self{self}}