pub trait DeviceModem {
// Required methods
fn modem_capabilities(&self) -> Result<u32, Error>;
fn current_capabilities(&self) -> Result<u32, Error>;
fn device_id(&self) -> Result<String, Error>;
fn operator_code(&self) -> Result<String, Error>;
fn apn(&self) -> Result<String, Error>;
}