pub struct Message {
pub bulk_id: Option<String>,
pub number: Option<String>,
pub message: Option<String>,
pub status: Option<String>,
pub type: Option<String>,
pub confirm_state: Option<String>,
pub created_at: Option<String>,
pub sent_at: Option<String>,
pub recipients_count: Option<u32>,
}Expand description
Represents a sent message in the IPPanel API.
Contains tracking code, sender, content, status, type, confirmation, timestamps, and recipient count.
Fields§
§bulk_id: Option<String>§number: Option<String>§message: Option<String>§status: Option<String>§type: Option<String>§confirm_state: Option<String>§created_at: Option<String>§sent_at: Option<String>§recipients_count: Option<u32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more