Trait IFilterInfo_Impl
pub trait IFilterInfo_Impl: IDispatch_Impl {
// Required methods
fn FindPin(&self, strpinid: &BSTR) -> Result<IDispatch>;
fn Name(&self) -> Result<BSTR>;
fn VendorInfo(&self) -> Result<BSTR>;
fn Filter(&self) -> Result<IUnknown>;
fn Pins(&self) -> Result<IDispatch>;
fn IsFileSource(&self) -> Result<i32>;
fn Filename(&self) -> Result<BSTR>;
fn SetFilename(&self, strfilename: &BSTR) -> Result<()>;
}
Required Methods§
fn FindPin(&self, strpinid: &BSTR) -> Result<IDispatch>
fn Name(&self) -> Result<BSTR>
fn VendorInfo(&self) -> Result<BSTR>
fn Filter(&self) -> Result<IUnknown>
fn Pins(&self) -> Result<IDispatch>
fn IsFileSource(&self) -> Result<i32>
fn Filename(&self) -> Result<BSTR>
fn SetFilename(&self, strfilename: &BSTR) -> Result<()>
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.