pub struct AddEsimParams {
pub activation_code: Option<String>,
pub activation_state: Option<String>,
}Expand description
Parameters associated with the ADD_ESIM command to add an eSIM profile to the device.
This type is not used in any activity, and only used as part of another schema.
Fields§
§activation_code: Option<String>Required. The activation code for the eSIM profile.
activation_state: Option<String>Required. The activation state of the eSIM profile once it is downloaded.
Trait Implementations§
Source§impl Clone for AddEsimParams
impl Clone for AddEsimParams
Source§fn clone(&self) -> AddEsimParams
fn clone(&self) -> AddEsimParams
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 AddEsimParams
impl Debug for AddEsimParams
Source§impl Default for AddEsimParams
impl Default for AddEsimParams
Source§fn default() -> AddEsimParams
fn default() -> AddEsimParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddEsimParams
impl<'de> Deserialize<'de> for AddEsimParams
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
Source§impl Serialize for AddEsimParams
impl Serialize for AddEsimParams
impl Part for AddEsimParams
Auto Trait Implementations§
impl Freeze for AddEsimParams
impl RefUnwindSafe for AddEsimParams
impl Send for AddEsimParams
impl Sync for AddEsimParams
impl Unpin for AddEsimParams
impl UnwindSafe for AddEsimParams
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