pub trait IOfflineFilesPinInfo_Impl: Sized {
    // Required methods
    fn IsPinned(&self) -> Result<BOOL>;
    fn IsPinnedForUser(
        &self,
        pbpinnedforuser: *mut BOOL,
        pbinherit: *mut BOOL
    ) -> Result<()>;
    fn IsPinnedForUserByPolicy(
        &self,
        pbpinnedforuser: *mut BOOL,
        pbinherit: *mut BOOL
    ) -> Result<()>;
    fn IsPinnedForComputer(
        &self,
        pbpinnedforcomputer: *mut BOOL,
        pbinherit: *mut BOOL
    ) -> Result<()>;
    fn IsPinnedForFolderRedirection(
        &self,
        pbpinnedforfolderredirection: *mut BOOL,
        pbinherit: *mut BOOL
    ) -> Result<()>;
}

Required Methods§

fn IsPinned(&self) -> Result<BOOL>

fn IsPinnedForUser( &self, pbpinnedforuser: *mut BOOL, pbinherit: *mut BOOL ) -> Result<()>

fn IsPinnedForUserByPolicy( &self, pbpinnedforuser: *mut BOOL, pbinherit: *mut BOOL ) -> Result<()>

fn IsPinnedForComputer( &self, pbpinnedforcomputer: *mut BOOL, pbinherit: *mut BOOL ) -> Result<()>

fn IsPinnedForFolderRedirection( &self, pbpinnedforfolderredirection: *mut BOOL, pbinherit: *mut BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§