pub trait VideoTestSourceExt: IsA<VideoTestSource> + Sealed + 'static {
    // Provided methods
    fn pattern(&self) -> VideoTestPattern { ... }
    fn set_pattern(&self, pattern: VideoTestPattern) { ... }
}
Expand description

Trait containing all VideoTestSource methods.

§Implementors

VideoTestSource

Provided Methods§

source

fn pattern(&self) -> VideoTestPattern

Get the video pattern used by the self.

§Returns

The video pattern used by the self.

source

fn set_pattern(&self, pattern: VideoTestPattern)

Sets the source to use the given pattern.

§pattern

a VideoTestPattern

Object Safety§

This trait is not object safe.

Implementors§