pub trait DiscovererStreamInfoExt: IsA<DiscovererStreamInfo> + Sealed + 'static {
    // Provided methods
    fn caps(&self) -> Option<Caps> { ... }
    fn misc(&self) -> Option<Structure> { ... }
    fn next(&self) -> Option<DiscovererStreamInfo> { ... }
    fn previous(&self) -> Option<DiscovererStreamInfo> { ... }
    fn stream_id(&self) -> Option<GString> { ... }
    fn stream_number(&self) -> i32 { ... }
    fn stream_type_nick(&self) -> GString { ... }
    fn tags(&self) -> Option<TagList> { ... }
    fn toc(&self) -> Option<Toc> { ... }
}

Provided Methods§

source

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

source

fn misc(&self) -> Option<Structure>

source

fn next(&self) -> Option<DiscovererStreamInfo>

source

fn previous(&self) -> Option<DiscovererStreamInfo>

source

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

source

fn stream_number(&self) -> i32

Available on crate feature v1_20 only.
source

fn stream_type_nick(&self) -> GString

source

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

source

fn toc(&self) -> Option<Toc>

Object Safety§

This trait is not object safe.

Implementors§