Struct webrtc_srtp::session::Session[][src]

pub struct Session { /* fields omitted */ }

Session implements io.ReadWriteCloser and provides a bi-directional SRTP session SRTP itself does not have a design like this, but it is common in most applications for local/remote to each have their own keying material. This provides those patterns instead of making everyone re-implement

Implementations

impl Session[src]

pub async fn new(
    conn: Arc<dyn Conn + Send + Sync>,
    config: Config,
    is_rtp: bool
) -> Result<Self, Error>
[src]

pub async fn listen(&mut self, ssrc: u32) -> Result<Stream, Error>[src]

listen on the given SSRC to create a stream, it can be used if you want a certain SSRC, but don’t want to wait for Accept

pub async fn accept(&mut self) -> Result<Stream, Error>[src]

accept returns a stream to handle RTCP for a single SSRC

pub async fn close(&mut self) -> Result<(), Error>[src]

pub async fn write(&mut self, buf: &Bytes, is_rtp: bool) -> Result<usize, Error>[src]

pub async fn write_rtp(&mut self, packet: &Packet) -> Result<usize, Error>[src]

pub async fn write_rtcp(&mut self, packet: &dyn Packet) -> Result<usize, Error>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Session

impl Send for Session

impl Sync for Session

impl Unpin for Session

impl !UnwindSafe for Session

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T

impl<T> Pipe for T where
    T: ?Sized

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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>,