pub struct JigCodeSessionResponse {
pub code: JigCode,
pub players_name: Option<String>,
pub started_at: DateTime<Utc>,
pub finished_at: Option<DateTime<Utc>>,
pub info: Option<JigPlaySession>,
}
Expand description
Lists all jig player sessions associated with a jig
Fields§
§code: JigCode
code
players_name: Option<String>
Playing’s name
started_at: DateTime<Utc>
star time
finished_at: Option<DateTime<Utc>>
end time
info: Option<JigPlaySession>
information about the session
Trait Implementations§
Source§impl Clone for JigCodeSessionResponse
impl Clone for JigCodeSessionResponse
Source§fn clone(&self) -> JigCodeSessionResponse
fn clone(&self) -> JigCodeSessionResponse
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 JigCodeSessionResponse
impl Debug for JigCodeSessionResponse
Source§impl<'de> Deserialize<'de> for JigCodeSessionResponse
impl<'de> Deserialize<'de> for JigCodeSessionResponse
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 JigCodeSessionResponse
impl RefUnwindSafe for JigCodeSessionResponse
impl Send for JigCodeSessionResponse
impl Sync for JigCodeSessionResponse
impl Unpin for JigCodeSessionResponse
impl UnwindSafe for JigCodeSessionResponse
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