windows::Win32::Storage::OfflineFiles

Trait IOfflineFilesPinInfo_Impl

pub trait IOfflineFilesPinInfo_Impl: IUnknownImpl {
    // 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<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§