pub struct JigPlaySession {
    pub modules: Vec<JigPlaySessionModule>,
    pub visited: HashSet<StableModuleId>,
}Expand description
Play session
Fields§
§modules: Vec<JigPlaySessionModule>modules
visited: HashSet<StableModuleId>Modules just visited
Trait Implementations§
Source§impl Clone for JigPlaySession
 
impl Clone for JigPlaySession
Source§fn clone(&self) -> JigPlaySession
 
fn clone(&self) -> JigPlaySession
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 JigPlaySession
 
impl Debug for JigPlaySession
Source§impl Default for JigPlaySession
 
impl Default for JigPlaySession
Source§fn default() -> JigPlaySession
 
fn default() -> JigPlaySession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JigPlaySession
 
impl<'de> Deserialize<'de> for JigPlaySession
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 JigPlaySession
 
impl JigPlaySessionModuleGetPointsEarned for JigPlaySession
Source§fn get_points_earned(&self) -> PointsEarned
 
fn get_points_earned(&self) -> PointsEarned
get points earned method
Auto Trait Implementations§
impl Freeze for JigPlaySession
impl RefUnwindSafe for JigPlaySession
impl Send for JigPlaySession
impl Sync for JigPlaySession
impl Unpin for JigPlaySession
impl UnwindSafe for JigPlaySession
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