pub struct SessionInfo {
pub id: String,
pub status: String,
pub owner: String,
pub license: String,
pub app_id: String,
pub started: String,
pub stopped: Option<String>,
pub streams: Vec<String>,
pub record_ids: Vec<String>,
pub recording: bool,
pub headset: Option<HeadsetInfo>,
}Expand description
Session information from createSession / querySessions.
Fields§
§id: StringSession ID (UUID).
status: StringSession status: “opened”, “activated”.
owner: StringEmotivID of the user
license: StringId of license used by the session
app_id: StringApplication ID.
started: StringISO datetime when the session was created.
stopped: Option<String>ISO datetime when the session was closed.
streams: Vec<String>Data streams subscribed to in this session.
record_ids: Vec<String>Ids of all records created during this session.
recording: boolWhether this session is currently being recorded.
headset: Option<HeadsetInfo>Headset associated with this session.
Trait Implementations§
Source§impl Clone for SessionInfo
impl Clone for SessionInfo
Source§fn clone(&self) -> SessionInfo
fn clone(&self) -> SessionInfo
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 SessionInfo
impl Debug for SessionInfo
Source§impl<'de> Deserialize<'de> for SessionInfo
impl<'de> Deserialize<'de> for SessionInfo
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 SessionInfo
impl RefUnwindSafe for SessionInfo
impl Send for SessionInfo
impl Sync for SessionInfo
impl Unpin for SessionInfo
impl UnsafeUnpin for SessionInfo
impl UnwindSafe for SessionInfo
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