pub trait IWMPCdromCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn count(&self, plcount: *mut i32) -> Result<()>;
    fn item(&self, lindex: i32) -> Result<IWMPCdrom>;
    fn getByDriveSpecifier(
        &self,
        bstrdrivespecifier: &BSTR,
    ) -> Result<IWMPCdrom>;
}

Required Methods§

fn count(&self, plcount: *mut i32) -> Result<()>

fn item(&self, lindex: i32) -> Result<IWMPCdrom>

fn getByDriveSpecifier(&self, bstrdrivespecifier: &BSTR) -> Result<IWMPCdrom>

Object Safety§

This trait is not object safe.

Implementors§