pub trait IWMMetadataEditor_Impl: Sized {
    // Required methods
    fn Open(&self, pwszfilename: &PCWSTR) -> Result<()>;
    fn Close(&self) -> Result<()>;
    fn Flush(&self) -> Result<()>;
}

Required Methods§

fn Open(&self, pwszfilename: &PCWSTR) -> Result<()>

fn Close(&self) -> Result<()>

fn Flush(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§