Trait IMbnSmsConfiguration_Impl
pub trait IMbnSmsConfiguration_Impl: IUnknownImpl {
// Required methods
fn ServiceCenterAddress(&self) -> Result<BSTR>;
fn SetServiceCenterAddress(&self, scaddress: &PCWSTR) -> Result<()>;
fn MaxMessageIndex(&self) -> Result<u32>;
fn CdmaShortMsgSize(&self) -> Result<u32>;
fn SmsFormat(&self) -> Result<MBN_SMS_FORMAT>;
fn SetSmsFormat(&self, smsformat: MBN_SMS_FORMAT) -> Result<()>;
}
Required Methods§
fn ServiceCenterAddress(&self) -> Result<BSTR>
fn SetServiceCenterAddress(&self, scaddress: &PCWSTR) -> Result<()>
fn MaxMessageIndex(&self) -> Result<u32>
fn CdmaShortMsgSize(&self) -> Result<u32>
fn SmsFormat(&self) -> Result<MBN_SMS_FORMAT>
fn SetSmsFormat(&self, smsformat: MBN_SMS_FORMAT) -> Result<()>
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.