pub trait ISClusPartitionEx_Impl: Sized + ISClusPartition_Impl {
    // Required methods
    fn TotalSize(&self) -> Result<i32>;
    fn FreeSpace(&self) -> Result<i32>;
    fn DeviceNumber(&self) -> Result<i32>;
    fn PartitionNumber(&self) -> Result<i32>;
    fn VolumeGuid(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§