pub enum JigPlaySessionModule {
Matching(JigPlaySessionMatching),
CardQuiz(JigPlaySessionCardQuiz),
DragDrop(JigPlaySessionDragDrop),
FindAnswer(JigPlaySessionFindAnswer),
}
Expand description
modules
Variants§
Matching(JigPlaySessionMatching)
Matching
CardQuiz(JigPlaySessionCardQuiz)
Card quiz
DragDrop(JigPlaySessionDragDrop)
Drag and drop
FindAnswer(JigPlaySessionFindAnswer)
Answer this
Implementations§
Source§impl JigPlaySessionModule
impl JigPlaySessionModule
Sourcepub fn stable_module_id(&self) -> StableModuleId
pub fn stable_module_id(&self) -> StableModuleId
get stable module id
Trait Implementations§
Source§impl Clone for JigPlaySessionModule
impl Clone for JigPlaySessionModule
Source§fn clone(&self) -> JigPlaySessionModule
fn clone(&self) -> JigPlaySessionModule
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 JigPlaySessionModule
impl Debug for JigPlaySessionModule
Source§impl<'de> Deserialize<'de> for JigPlaySessionModule
impl<'de> Deserialize<'de> for JigPlaySessionModule
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 JigPlaySessionModule
impl JigPlaySessionModuleGetPointsEarned for JigPlaySessionModule
Source§fn get_points_earned(&self) -> PointsEarned
fn get_points_earned(&self) -> PointsEarned
get points earned method
Auto Trait Implementations§
impl Freeze for JigPlaySessionModule
impl RefUnwindSafe for JigPlaySessionModule
impl Send for JigPlaySessionModule
impl Sync for JigPlaySessionModule
impl Unpin for JigPlaySessionModule
impl UnwindSafe for JigPlaySessionModule
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