pub struct TurnServerConfig {
pub url: String,
pub username: String,
pub password: String,
}Expand description
TURN server configuration
Fields§
§url: String§username: String§password: StringTrait Implementations§
Source§impl Clone for TurnServerConfig
impl Clone for TurnServerConfig
Source§fn clone(&self) -> TurnServerConfig
fn clone(&self) -> TurnServerConfig
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 TurnServerConfig
impl Debug for TurnServerConfig
Source§impl<'de> Deserialize<'de> for TurnServerConfig
impl<'de> Deserialize<'de> for TurnServerConfig
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 TurnServerConfig
impl RefUnwindSafe for TurnServerConfig
impl Send for TurnServerConfig
impl Sync for TurnServerConfig
impl Unpin for TurnServerConfig
impl UnsafeUnpin for TurnServerConfig
impl UnwindSafe for TurnServerConfig
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