[][src]Struct rusoto_kinesis_video_signaling::IceServer

pub struct IceServer {
    pub password: Option<String>,
    pub ttl: Option<i64>,
    pub uris: Option<Vec<String>>,
    pub username: Option<String>,
}

A structure for the ICE server connection data.

Fields

password: Option<String>

A password to login to the ICE server.

ttl: Option<i64>

The period of time, in seconds, during which the username and password are valid.

uris: Option<Vec<String>>

An array of URIs, in the form specified in the I-D.petithuguenin-behave-turn-uris spec. These URIs provide the different addresses and/or protocols that can be used to reach the TURN server.

username: Option<String>

A username to login to the ICE server.

Trait Implementations

impl Clone for IceServer[src]

impl Debug for IceServer[src]

impl Default for IceServer[src]

impl<'de> Deserialize<'de> for IceServer[src]

impl PartialEq<IceServer> for IceServer[src]

impl StructuralPartialEq for IceServer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.