pub struct SessionBootstrap {
pub session_id: String,
pub client_token: String,
pub expires_at: String,
pub join_token_ttl_seconds: u64,
pub ice_servers: Vec<RtcIceServer>,
}Fields§
§session_id: String§client_token: String§expires_at: String§join_token_ttl_seconds: u64§ice_servers: Vec<RtcIceServer>Trait Implementations§
Source§impl Clone for SessionBootstrap
impl Clone for SessionBootstrap
Source§fn clone(&self) -> SessionBootstrap
fn clone(&self) -> SessionBootstrap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SessionBootstrap
impl Debug for SessionBootstrap
Source§impl<'de> Deserialize<'de> for SessionBootstrap
impl<'de> Deserialize<'de> for SessionBootstrap
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 SessionBootstrap
impl PartialEq for SessionBootstrap
Source§fn eq(&self, other: &SessionBootstrap) -> bool
fn eq(&self, other: &SessionBootstrap) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionBootstrap
impl Serialize for SessionBootstrap
impl StructuralPartialEq for SessionBootstrap
Auto Trait Implementations§
impl Freeze for SessionBootstrap
impl RefUnwindSafe for SessionBootstrap
impl Send for SessionBootstrap
impl Sync for SessionBootstrap
impl Unpin for SessionBootstrap
impl UnsafeUnpin for SessionBootstrap
impl UnwindSafe for SessionBootstrap
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