pub trait IDiscFormat2_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn IsRecorderSupported(
        &self,
        recorder: Option<&IDiscRecorder2>
    ) -> Result<VARIANT_BOOL>;
    fn IsCurrentMediaSupported(
        &self,
        recorder: Option<&IDiscRecorder2>
    ) -> Result<VARIANT_BOOL>;
    fn MediaPhysicallyBlank(&self) -> Result<VARIANT_BOOL>;
    fn MediaHeuristicallyBlank(&self) -> Result<VARIANT_BOOL>;
    fn SupportedMediaTypes(&self) -> Result<*mut SAFEARRAY>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§