pub struct JigPlaySessionCardQuiz {
pub stable_module_id: StableModuleId,
pub rounds: Vec<JigPlaySessionCardQuizRound>,
}
Expand description
CardQuiz module
Fields§
§stable_module_id: StableModuleId
related module id
rounds: Vec<JigPlaySessionCardQuizRound>
list of rounds for this module
Implementations§
Source§impl JigPlaySessionCardQuiz
impl JigPlaySessionCardQuiz
Sourcepub fn new(stable_module_id: StableModuleId) -> Self
pub fn new(stable_module_id: StableModuleId) -> Self
create new from module id
Trait Implementations§
Source§impl Clone for JigPlaySessionCardQuiz
impl Clone for JigPlaySessionCardQuiz
Source§fn clone(&self) -> JigPlaySessionCardQuiz
fn clone(&self) -> JigPlaySessionCardQuiz
Returns a copy 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 JigPlaySessionCardQuiz
impl Debug for JigPlaySessionCardQuiz
Source§impl<'de> Deserialize<'de> for JigPlaySessionCardQuiz
impl<'de> Deserialize<'de> for JigPlaySessionCardQuiz
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 JigPlaySessionModuleGetPointsEarned for JigPlaySessionCardQuiz
impl JigPlaySessionModuleGetPointsEarned for JigPlaySessionCardQuiz
Source§fn get_points_earned(&self) -> PointsEarned
fn get_points_earned(&self) -> PointsEarned
get points earned method
Auto Trait Implementations§
impl Freeze for JigPlaySessionCardQuiz
impl RefUnwindSafe for JigPlaySessionCardQuiz
impl Send for JigPlaySessionCardQuiz
impl Sync for JigPlaySessionCardQuiz
impl Unpin for JigPlaySessionCardQuiz
impl UnwindSafe for JigPlaySessionCardQuiz
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