Trait dshow_IGraphBuilder

Source
pub trait dshow_IGraphBuilder: dshow_IFilterGraph {
    // Provided methods
    fn Abort(&self) -> HrResult<()> { ... }
    fn AddSourceFilter(
        &self,
        file_name: &str,
        filter_name: &str,
    ) -> HrResult<IBaseFilter> { ... }
    fn Connect(
        &self,
        pin_out: &impl dshow_IPin,
        pin_in: &impl dshow_IPin,
    ) -> HrResult<()> { ... }
    fn Render(&self, pin_out: &impl dshow_IPin) -> HrResult<()> { ... }
    fn RenderFile(&self, file: &str) -> HrResult<()> { ... }
    fn SetLogFile(&self, hfile: Option<&HFILE>) -> HrResult<()> { ... }
    fn ShouldOperationContinue(&self) -> HrResult<bool> { ... }
}
Available on crate features kernel and dshow only.
Expand description

This trait is enabled with the dshow feature, and provides methods for IGraphBuilder.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§