Struct firebase_wasm::auth::AndroidActionCodeSettings
source · 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
sourceimpl 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
sourceimpl Clone for AndroidActionCodeSettings
impl Clone for AndroidActionCodeSettings
sourcefn clone(&self) -> AndroidActionCodeSettings
fn clone(&self) -> AndroidActionCodeSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AndroidActionCodeSettings
impl Debug for AndroidActionCodeSettings
sourceimpl PartialEq<AndroidActionCodeSettings> for AndroidActionCodeSettings
impl PartialEq<AndroidActionCodeSettings> for AndroidActionCodeSettings
sourcefn eq(&self, other: &AndroidActionCodeSettings) -> bool
fn eq(&self, other: &AndroidActionCodeSettings) -> bool
sourceimpl Serialize for AndroidActionCodeSettings
impl Serialize for AndroidActionCodeSettings
impl Eq for AndroidActionCodeSettings
impl StructuralEq for AndroidActionCodeSettings
impl StructuralPartialEq for AndroidActionCodeSettings
Auto Trait Implementations
impl RefUnwindSafe for AndroidActionCodeSettings
impl Send for AndroidActionCodeSettings
impl Sync for AndroidActionCodeSettings
impl Unpin for AndroidActionCodeSettings
impl UnwindSafe for AndroidActionCodeSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more