pub struct MessageDetails {
pub id: String,
pub part_id: String,
pub state: String,
pub sender: String,
pub network: String,
pub dcs: String,
pub error_description: String,
pub time_change_state: String,
pub cost: f32,
pub error_id: u32,
pub ported: bool,
}
Fields§
§id: String
§part_id: String
§state: String
§sender: String
§network: String
§dcs: String
§error_description: String
§time_change_state: String
§cost: f32
§error_id: u32
§ported: bool
Trait Implementations§
Source§impl Debug for MessageDetails
impl Debug for MessageDetails
Source§impl<'de> Deserialize<'de> for MessageDetails
impl<'de> Deserialize<'de> for MessageDetails
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 MessageDetails
impl RefUnwindSafe for MessageDetails
impl Send for MessageDetails
impl Sync for MessageDetails
impl Unpin for MessageDetails
impl UnwindSafe for MessageDetails
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