pub struct SessionStatusProps {
pub session_id: String,
pub status: Value,
}Expand description
Properties for EventListResponse::SessionStatus.
Fields§
§session_id: StringSession ID.
status: ValueSession status (complex tagged union, represented as serde_json::Value).
Trait Implementations§
Source§impl Clone for SessionStatusProps
impl Clone for SessionStatusProps
Source§fn clone(&self) -> SessionStatusProps
fn clone(&self) -> SessionStatusProps
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 SessionStatusProps
impl Debug for SessionStatusProps
Source§impl<'de> Deserialize<'de> for SessionStatusProps
impl<'de> Deserialize<'de> for SessionStatusProps
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 PartialEq for SessionStatusProps
impl PartialEq for SessionStatusProps
Source§impl Serialize for SessionStatusProps
impl Serialize for SessionStatusProps
impl StructuralPartialEq for SessionStatusProps
Auto Trait Implementations§
impl Freeze for SessionStatusProps
impl RefUnwindSafe for SessionStatusProps
impl Send for SessionStatusProps
impl Sync for SessionStatusProps
impl Unpin for SessionStatusProps
impl UnwindSafe for SessionStatusProps
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