pub struct DefaultApplicationSettingAttempt {
pub attempt_outcome: Option<String>,
pub package_name: Option<String>,
}Expand description
Details on a default application setting attempt.
This type is not used in any activity, and only used as part of another schema.
Fields§
§attempt_outcome: Option<String>Output only. The outcome of setting the app as the default.
package_name: Option<String>Output only. The package name of the attempted application.
Trait Implementations§
Source§impl Clone for DefaultApplicationSettingAttempt
impl Clone for DefaultApplicationSettingAttempt
Source§fn clone(&self) -> DefaultApplicationSettingAttempt
fn clone(&self) -> DefaultApplicationSettingAttempt
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 Default for DefaultApplicationSettingAttempt
impl Default for DefaultApplicationSettingAttempt
Source§fn default() -> DefaultApplicationSettingAttempt
fn default() -> DefaultApplicationSettingAttempt
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DefaultApplicationSettingAttempt
impl<'de> Deserialize<'de> for DefaultApplicationSettingAttempt
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
impl Part for DefaultApplicationSettingAttempt
Auto Trait Implementations§
impl Freeze for DefaultApplicationSettingAttempt
impl RefUnwindSafe for DefaultApplicationSettingAttempt
impl Send for DefaultApplicationSettingAttempt
impl Sync for DefaultApplicationSettingAttempt
impl Unpin for DefaultApplicationSettingAttempt
impl UnwindSafe for DefaultApplicationSettingAttempt
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