pub trait IDStorageFile_Impl: IUnknownImpl {
// Required methods
fn Close(&self);
fn GetFileInformation(
&self,
info: *mut BY_HANDLE_FILE_INFORMATION,
) -> Result<()>;
}Required Methods§
fn Close(&self)
fn GetFileInformation( &self, info: *mut BY_HANDLE_FILE_INFORMATION, ) -> 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.