pub struct DeviceInformation {Show 15 fields
pub device_name: String,
pub serial_number: String,
pub imei: String,
pub imsi: Option<String>,
pub iccid: Option<String>,
pub msisdn: Option<String>,
pub hardware_version: String,
pub software_version: String,
pub webui_version: Option<String>,
pub mac_address1: Option<String>,
pub mac_address2: Option<String>,
pub product_family: Option<String>,
pub classify: Option<String>,
pub support_mode: Option<String>,
pub work_mode: Option<String>,
}Expand description
Device information response
Fields§
§device_name: String§serial_number: String§imei: String§imsi: Option<String>§iccid: Option<String>§msisdn: Option<String>§hardware_version: String§software_version: String§webui_version: Option<String>§mac_address1: Option<String>§mac_address2: Option<String>§product_family: Option<String>§classify: Option<String>§support_mode: Option<String>§work_mode: Option<String>Trait Implementations§
Source§impl Clone for DeviceInformation
impl Clone for DeviceInformation
Source§fn clone(&self) -> DeviceInformation
fn clone(&self) -> DeviceInformation
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 DeviceInformation
impl Debug for DeviceInformation
Source§impl<'de> Deserialize<'de> for DeviceInformation
impl<'de> Deserialize<'de> for DeviceInformation
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 DeviceInformation
impl RefUnwindSafe for DeviceInformation
impl Send for DeviceInformation
impl Sync for DeviceInformation
impl Unpin for DeviceInformation
impl UnsafeUnpin for DeviceInformation
impl UnwindSafe for DeviceInformation
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