#[non_exhaustive]pub struct UpdateApplicationPortalOptions {
    pub sign_in_options: Option<SignInOptions>,
}Expand description
A structure that describes the options for the access portal associated with an application that can be updated.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sign_in_options: Option<SignInOptions>A structure that describes the sign-in options for an application portal.
Implementations§
source§impl UpdateApplicationPortalOptions
 
impl UpdateApplicationPortalOptions
sourcepub fn sign_in_options(&self) -> Option<&SignInOptions>
 
pub fn sign_in_options(&self) -> Option<&SignInOptions>
A structure that describes the sign-in options for an application portal.
source§impl UpdateApplicationPortalOptions
 
impl UpdateApplicationPortalOptions
sourcepub fn builder() -> UpdateApplicationPortalOptionsBuilder
 
pub fn builder() -> UpdateApplicationPortalOptionsBuilder
Creates a new builder-style object to manufacture UpdateApplicationPortalOptions.
Trait Implementations§
source§impl Clone for UpdateApplicationPortalOptions
 
impl Clone for UpdateApplicationPortalOptions
source§fn clone(&self) -> UpdateApplicationPortalOptions
 
fn clone(&self) -> UpdateApplicationPortalOptions
Returns a copy 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 PartialEq for UpdateApplicationPortalOptions
 
impl PartialEq for UpdateApplicationPortalOptions
source§fn eq(&self, other: &UpdateApplicationPortalOptions) -> bool
 
fn eq(&self, other: &UpdateApplicationPortalOptions) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateApplicationPortalOptions
Auto Trait Implementations§
impl Freeze for UpdateApplicationPortalOptions
impl RefUnwindSafe for UpdateApplicationPortalOptions
impl Send for UpdateApplicationPortalOptions
impl Sync for UpdateApplicationPortalOptions
impl Unpin for UpdateApplicationPortalOptions
impl UnwindSafe for UpdateApplicationPortalOptions
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.