pub struct HttpSmsDeliveryReport {
pub report_id: Option<i64>,
pub status: u8,
pub is_final: bool,
pub created_at: Option<u32>,
}
Expand description
Delivery report for an already sent SMS message.
Fields§
§report_id: Option<i64>
Unique identifier for this delivery report.
status: u8
Delivery status code from the network.
is_final: bool
Whether this is the final delivery report for the message.
created_at: Option<u32>
Unix timestamp when this report was created.
Trait Implementations§
Source§impl Clone for HttpSmsDeliveryReport
impl Clone for HttpSmsDeliveryReport
Source§fn clone(&self) -> HttpSmsDeliveryReport
fn clone(&self) -> HttpSmsDeliveryReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HttpSmsDeliveryReport
impl Debug for HttpSmsDeliveryReport
Source§impl<'de> Deserialize<'de> for HttpSmsDeliveryReport
impl<'de> Deserialize<'de> for HttpSmsDeliveryReport
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
Source§impl PartialEq for HttpSmsDeliveryReport
impl PartialEq for HttpSmsDeliveryReport
Source§impl Serialize for HttpSmsDeliveryReport
impl Serialize for HttpSmsDeliveryReport
impl Copy for HttpSmsDeliveryReport
impl StructuralPartialEq for HttpSmsDeliveryReport
Auto Trait Implementations§
impl Freeze for HttpSmsDeliveryReport
impl RefUnwindSafe for HttpSmsDeliveryReport
impl Send for HttpSmsDeliveryReport
impl Sync for HttpSmsDeliveryReport
impl Unpin for HttpSmsDeliveryReport
impl UnwindSafe for HttpSmsDeliveryReport
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