pub trait RTSPSessionExtManual: Sealed + IsA<RTSPSession> + 'static {
    // Provided method
    fn media(&self, path: &str) -> (Option<RTSPSessionMedia>, i32) { ... }
}

Provided Methods§

source

fn media(&self, path: &str) -> (Option<RTSPSessionMedia>, i32)

Gets the session media for path. matched will contain the number of matched characters of path.

§path

the path for the media

§Returns

the configuration for path in self.

§matched

the amount of matched characters

Object Safety§

This trait is not object safe.

Implementors§