Trait ISmsBinaryMessage_Impl
pub trait ISmsBinaryMessage_Impl: ISmsMessage_Impl {
// Required methods
fn Format(&self) -> Result<SmsDataFormat>;
fn SetFormat(&self, value: SmsDataFormat) -> Result<()>;
fn GetData(&self) -> Result<Array<u8>>;
fn SetData(&self, value: &[u8]) -> Result<()>;
}
Required Methods§
fn Format(&self) -> Result<SmsDataFormat>
fn SetFormat(&self, value: SmsDataFormat) -> Result<()>
fn GetData(&self) -> Result<Array<u8>>
fn SetData(&self, value: &[u8]) -> 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.