pub trait IShellFolderBand_Impl: Sized {
    // Required methods
    fn InitializeSFB(
        &self,
        psf: Option<&IShellFolder>,
        pidl: *const ITEMIDLIST
    ) -> Result<()>;
    fn SetBandInfoSFB(&self, pbi: *const BANDINFOSFB) -> Result<()>;
    fn GetBandInfoSFB(&self, pbi: *mut BANDINFOSFB) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§