pub trait IWMWatermarkInfo_Impl: Sized {
    // Required methods
    fn GetWatermarkEntryCount(
        &self,
        wmettype: WMT_WATERMARK_ENTRY_TYPE
    ) -> Result<u32>;
    fn GetWatermarkEntry(
        &self,
        wmettype: WMT_WATERMARK_ENTRY_TYPE,
        dwentrynum: u32,
        pentry: *mut WMT_WATERMARK_ENTRY
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§