pub struct SenderIDItem {
pub sender_id: String,
pub status: String,
pub company: Option<String>,
pub usecase: Option<String>,
pub country: Option<String>,
pub created_at: String,
}
Fields§
§sender_id: String
§status: String
§company: Option<String>
§usecase: Option<String>
§country: Option<String>
§created_at: String
Trait Implementations§
Source§impl Debug for SenderIDItem
impl Debug for SenderIDItem
Source§impl<'de> Deserialize<'de> for SenderIDItem
impl<'de> Deserialize<'de> for SenderIDItem
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 SenderIDItem
impl RefUnwindSafe for SenderIDItem
impl Send for SenderIDItem
impl Sync for SenderIDItem
impl Unpin for SenderIDItem
impl UnwindSafe for SenderIDItem
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