Trait IFaxIncomingQueue_Impl
pub trait IFaxIncomingQueue_Impl: IDispatch_Impl {
// Required methods
fn Blocked(&self) -> Result<VARIANT_BOOL>;
fn SetBlocked(&self, bblocked: VARIANT_BOOL) -> Result<()>;
fn Refresh(&self) -> Result<()>;
fn Save(&self) -> Result<()>;
fn GetJobs(&self) -> Result<IFaxIncomingJobs>;
fn GetJob(&self, bstrjobid: &BSTR) -> Result<IFaxIncomingJob>;
}
Required Methods§
fn Blocked(&self) -> Result<VARIANT_BOOL>
fn SetBlocked(&self, bblocked: VARIANT_BOOL) -> Result<()>
fn Refresh(&self) -> Result<()>
fn Save(&self) -> Result<()>
fn GetJobs(&self) -> Result<IFaxIncomingJobs>
fn GetJob(&self, bstrjobid: &BSTR) -> Result<IFaxIncomingJob>
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.