pub trait ITQueue_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn SetMeasurementPeriod(&self, lperiod: i32) -> Result<()>;
    fn MeasurementPeriod(&self) -> Result<i32>;
    fn TotalCallsQueued(&self) -> Result<i32>;
    fn CurrentCallsQueued(&self) -> Result<i32>;
    fn TotalCallsAbandoned(&self) -> Result<i32>;
    fn TotalCallsFlowedIn(&self) -> Result<i32>;
    fn TotalCallsFlowedOut(&self) -> Result<i32>;
    fn LongestEverWaitTime(&self) -> Result<i32>;
    fn CurrentLongestWaitTime(&self) -> Result<i32>;
    fn AverageWaitTime(&self) -> Result<i32>;
    fn FinalDisposition(&self) -> Result<i32>;
    fn Name(&self) -> Result<BSTR>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§