pub trait IAppxContentGroupMapWriter_Impl: Sized {
    // Required methods
    fn AddAutomaticGroup(&self, groupname: &PCWSTR) -> Result<()>;
    fn AddAutomaticFile(&self, filename: &PCWSTR) -> Result<()>;
    fn Close(&self) -> Result<()>;
}

Required Methods§

fn AddAutomaticGroup(&self, groupname: &PCWSTR) -> Result<()>

fn AddAutomaticFile(&self, filename: &PCWSTR) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§