pub struct AndroidActionCodeSettings {
pub install_app: Option<bool>,
pub minimum_version: Option<String>,
pub package_name: String,
}
Fields§
§install_app: Option<bool>
§minimum_version: Option<String>
§package_name: String
Implementations§
Source§impl AndroidActionCodeSettings
impl AndroidActionCodeSettings
Sourcepub fn builder() -> AndroidActionCodeSettingsBuilder<((), (), ())>
pub fn builder() -> AndroidActionCodeSettingsBuilder<((), (), ())>
Create a builder for building AndroidActionCodeSettings
.
On the builder, call .install_app(...)
(optional), .minimum_version(...)
(optional), .package_name(...)
to set the values of the fields.
Finally, call .build()
to create the instance of AndroidActionCodeSettings
.
Trait Implementations§
Source§impl Clone for AndroidActionCodeSettings
impl Clone for AndroidActionCodeSettings
Source§fn clone(&self) -> AndroidActionCodeSettings
fn clone(&self) -> AndroidActionCodeSettings
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 AndroidActionCodeSettings
impl Debug for AndroidActionCodeSettings
impl Eq for AndroidActionCodeSettings
impl StructuralPartialEq for AndroidActionCodeSettings
Auto Trait Implementations§
impl Freeze for AndroidActionCodeSettings
impl RefUnwindSafe for AndroidActionCodeSettings
impl Send for AndroidActionCodeSettings
impl Sync for AndroidActionCodeSettings
impl Unpin for AndroidActionCodeSettings
impl UnwindSafe for AndroidActionCodeSettings
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