pub struct EsimCommandStatus {
pub esim_info: Option<EsimInfo>,
pub internal_error_details: Option<InternalErrorDetails>,
pub status: Option<String>,
}Expand description
Status and error details (if present) of an ADD_ESIM or REMOVE_ESIM command.
This type is not used in any activity, and only used as part of another schema.
Fields§
§esim_info: Option<EsimInfo>Output only. Information about the eSIM added or removed. This is populated only when the eSIM operation status is SUCCESS.
internal_error_details: Option<InternalErrorDetails>Output only. Details of the error if the status is set to INTERNAL_ERROR.
status: Option<String>Output only. Status of an ADD_ESIM or REMOVE_ESIM command.
Trait Implementations§
Source§impl Clone for EsimCommandStatus
impl Clone for EsimCommandStatus
Source§fn clone(&self) -> EsimCommandStatus
fn clone(&self) -> EsimCommandStatus
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 EsimCommandStatus
impl Debug for EsimCommandStatus
Source§impl Default for EsimCommandStatus
impl Default for EsimCommandStatus
Source§fn default() -> EsimCommandStatus
fn default() -> EsimCommandStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EsimCommandStatus
impl<'de> Deserialize<'de> for EsimCommandStatus
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 EsimCommandStatus
impl Serialize for EsimCommandStatus
impl Part for EsimCommandStatus
Auto Trait Implementations§
impl Freeze for EsimCommandStatus
impl RefUnwindSafe for EsimCommandStatus
impl Send for EsimCommandStatus
impl Sync for EsimCommandStatus
impl Unpin for EsimCommandStatus
impl UnwindSafe for EsimCommandStatus
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