[][src]Struct mediasoup::webrtc_transport::TransportListenIps

pub struct TransportListenIps(_);

Struct that protects an invariant of having non-empty list of listen IPs

Implementations

impl TransportListenIps[src]

pub fn new(listen_ip: TransportListenIp) -> Self[src]

pub fn insert(self, listen_ip: TransportListenIp) -> Self[src]

Trait Implementations

impl Clone for TransportListenIps[src]

impl Debug for TransportListenIps[src]

impl Deref for TransportListenIps[src]

type Target = Vec<TransportListenIp>

The resulting type after dereferencing.

impl Eq for TransportListenIps[src]

impl PartialEq<TransportListenIps> for TransportListenIps[src]

impl Serialize for TransportListenIps[src]

impl StructuralEq for TransportListenIps[src]

impl StructuralPartialEq for TransportListenIps[src]

impl TryFrom<Vec<TransportListenIp, Global>> for TransportListenIps[src]

type Error = EmptyListError

The type returned in the event of a conversion error.

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> From<T> for T[src]

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,