pub trait PlayerStreamInfoExt: IsA<PlayerStreamInfo> + Sealed + 'static {
    // Provided methods
    fn caps(&self) -> Option<Caps> { ... }
    fn codec(&self) -> Option<GString> { ... }
    fn index(&self) -> i32 { ... }
    fn stream_type(&self) -> GString { ... }
    fn tags(&self) -> Option<TagList> { ... }
}

Provided Methods§

source

fn caps(&self) -> Option<Caps>

source

fn codec(&self) -> Option<GString>

source

fn index(&self) -> i32

source

fn stream_type(&self) -> GString

source

fn tags(&self) -> Option<TagList>

Object Safety§

This trait is not object safe.

Implementors§