Struct webrtc_ice::udp_mux::UDPMuxDefault
source · [−]pub struct UDPMuxDefault { /* private fields */ }
Implementations
sourceimpl UDPMuxDefault
impl UDPMuxDefault
Trait Implementations
sourceimpl UDPMux for UDPMuxDefault
impl UDPMux for UDPMuxDefault
sourcefn close<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn close<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Close the muxing.
sourceimpl UDPMuxWriter for UDPMuxDefault
impl UDPMuxWriter for UDPMuxDefault
sourcefn register_conn_for_address<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 UDPMuxConn,
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn register_conn_for_address<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 UDPMuxConn,
addr: SocketAddr
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Registers an address for the given connection.
sourcefn send_to<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
buf: &'life1 [u8],
target: &'life2 SocketAddr
) -> Pin<Box<dyn Future<Output = Result<usize, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
fn send_to<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
buf: &'life1 [u8],
target: &'life2 SocketAddr
) -> Pin<Box<dyn Future<Output = Result<usize, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
Sends the content of the buffer to the given target. Read more
Auto Trait Implementations
impl !RefUnwindSafe for UDPMuxDefault
impl Send for UDPMuxDefault
impl Sync for UDPMuxDefault
impl Unpin for UDPMuxDefault
impl !UnwindSafe for UDPMuxDefault
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more