Trait ITQueue_Impl
pub trait ITQueue_Impl: 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§
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>
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.