Trait dshow_IPin

Source
pub trait dshow_IPin: ole_IUnknown {
Show 15 methods // Provided methods fn BeginFlush(&self) -> HrResult<()> { ... } fn Connect( &self, receive_pin: &impl dshow_IPin, mt: Option<&AM_MEDIA_TYPE<'_>>, ) -> HrResult<()> { ... } fn ConnectedTo(&self) -> HrResult<IPin> { ... } fn ConnectionMediaType(&self, amt: &mut AM_MEDIA_TYPE<'_>) -> HrResult<()> { ... } fn Disconnect(&self) -> HrResult<()> { ... } fn EndFlush(&self) -> HrResult<()> { ... } fn EndOfStream(&self) -> HrResult<()> { ... } fn EnumMediaTypes(&self) -> HrResult<IEnumMediaTypes> { ... } fn NewSegment(&self, start: i64, stop: i64, rate: f64) -> HrResult<()> { ... } fn QueryAccept(&self, amt: &AM_MEDIA_TYPE<'_>) -> HrResult<bool> { ... } fn QueryDirection(&self) -> HrResult<PIN_DIRECTION> { ... } fn QueryId(&self) -> HrResult<String> { ... } fn QueryInternalConnections(&self) -> HrResult<Vec<IPin>> { ... } fn QueryPinInfo(&self, info: &mut PIN_INFO) -> HrResult<()> { ... } fn ReceiveConnection( &self, connector: &impl dshow_IPin, mt: &AM_MEDIA_TYPE<'_>, ) -> HrResult<()> { ... }
}
Available on crate features kernel and dshow only.
Expand description

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

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§