pub struct SessionWelcomeSession {
pub id: String,
pub connected_at: String,
pub status: String,
pub reconnect_url: Option<String>,
pub keepalive_timeout_seconds: i64,
}Fields§
§id: String§connected_at: String§status: String§reconnect_url: Option<String>§keepalive_timeout_seconds: i64Trait Implementations§
Source§impl Debug for SessionWelcomeSession
impl Debug for SessionWelcomeSession
Source§impl<'de> Deserialize<'de> for SessionWelcomeSession
impl<'de> Deserialize<'de> for SessionWelcomeSession
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 SessionWelcomeSession
impl RefUnwindSafe for SessionWelcomeSession
impl Send for SessionWelcomeSession
impl Sync for SessionWelcomeSession
impl Unpin for SessionWelcomeSession
impl UnwindSafe for SessionWelcomeSession
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