pub trait ISClusPartition_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Flags(&self) -> Result<i32>;
    fn DeviceName(&self) -> Result<BSTR>;
    fn VolumeLabel(&self) -> Result<BSTR>;
    fn SerialNumber(&self) -> Result<i32>;
    fn MaximumComponentLength(&self) -> Result<i32>;
    fn FileSystemFlags(&self) -> Result<i32>;
    fn FileSystem(&self) -> Result<BSTR>;
}

Required Methods§

fn Flags(&self) -> Result<i32>

fn DeviceName(&self) -> Result<BSTR>

fn VolumeLabel(&self) -> Result<BSTR>

fn SerialNumber(&self) -> Result<i32>

fn MaximumComponentLength(&self) -> Result<i32>

fn FileSystemFlags(&self) -> Result<i32>

fn FileSystem(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§