pub struct RemoveEsimParams {
pub icc_id: Option<String>,
}Expand description
Parameters associated with the REMOVE_ESIM command to remove an eSIM profile from the device.
This type is not used in any activity, and only used as part of another schema.
Fields§
§icc_id: Option<String>Required. ICC ID of the eSIM profile to be deleted.
Trait Implementations§
Source§impl Clone for RemoveEsimParams
impl Clone for RemoveEsimParams
Source§fn clone(&self) -> RemoveEsimParams
fn clone(&self) -> RemoveEsimParams
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 RemoveEsimParams
impl Debug for RemoveEsimParams
Source§impl Default for RemoveEsimParams
impl Default for RemoveEsimParams
Source§fn default() -> RemoveEsimParams
fn default() -> RemoveEsimParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveEsimParams
impl<'de> Deserialize<'de> for RemoveEsimParams
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 RemoveEsimParams
impl Serialize for RemoveEsimParams
impl Part for RemoveEsimParams
Auto Trait Implementations§
impl Freeze for RemoveEsimParams
impl RefUnwindSafe for RemoveEsimParams
impl Send for RemoveEsimParams
impl Sync for RemoveEsimParams
impl Unpin for RemoveEsimParams
impl UnwindSafe for RemoveEsimParams
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