pub trait IFileSystemBindData2_Impl: Sized + IFileSystemBindData_Impl {
    // Required methods
    fn SetFileID(&self, lifileid: i64) -> Result<()>;
    fn GetFileID(&self) -> Result<i64>;
    fn SetJunctionCLSID(&self, clsid: *const GUID) -> Result<()>;
    fn GetJunctionCLSID(&self) -> Result<GUID>;
}

Required Methods§

fn SetFileID(&self, lifileid: i64) -> Result<()>

fn GetFileID(&self) -> Result<i64>

fn SetJunctionCLSID(&self, clsid: *const GUID) -> Result<()>

fn GetJunctionCLSID(&self) -> Result<GUID>

Object Safety§

This trait is not object safe.

Implementors§