pub struct HistoryItem {Show 13 fields
pub sender: String,
pub receiver: String,
pub message: String,
pub amount: usize,
pub reroute: usize,
pub status: String,
pub sms_type: String,
pub send_by: String,
pub media_url: Option<String>,
pub message_id: String,
pub notify_url: Option<String>,
pub notify_id: Option<String>,
pub created_at: String,
}
Fields§
§sender: String
§receiver: String
§message: String
§amount: usize
§reroute: usize
§status: String
§sms_type: String
§send_by: String
§media_url: Option<String>
§message_id: String
§notify_url: Option<String>
§notify_id: Option<String>
§created_at: String
Trait Implementations§
Source§impl Debug for HistoryItem
impl Debug for HistoryItem
Source§impl<'de> Deserialize<'de> for HistoryItem
impl<'de> Deserialize<'de> for HistoryItem
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 HistoryItem
impl RefUnwindSafe for HistoryItem
impl Send for HistoryItem
impl Sync for HistoryItem
impl Unpin for HistoryItem
impl UnwindSafe for HistoryItem
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