pub trait ISClusVersion_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn MajorVersion(&self) -> Result<i32>;
    fn MinorVersion(&self) -> Result<i32>;
    fn BuildNumber(&self) -> Result<i16>;
    fn VendorId(&self) -> Result<BSTR>;
    fn CSDVersion(&self) -> Result<BSTR>;
    fn ClusterHighestVersion(&self) -> Result<i32>;
    fn ClusterLowestVersion(&self) -> Result<i32>;
    fn Flags(&self) -> Result<i32>;
    fn MixedVersion(&self) -> Result<VARIANT>;
}

Required Methods§

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

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

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

fn BuildNumber(&self) -> Result<i16>

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

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

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

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

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

fn MixedVersion(&self) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§