Struct aws_sdk_ssoadmin::types::DisplayData
source · #[non_exhaustive]pub struct DisplayData {
pub display_name: Option<String>,
pub icon_url: Option<String>,
pub description: Option<String>,
}
Expand description
A structure that describes how the portal represents an application provider.
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.display_name: Option<String>
The name of the application provider that appears in the portal.
icon_url: Option<String>
A URL that points to an icon that represents the application provider.
description: Option<String>
The description of the application provider that appears in the portal.
Implementations§
source§impl DisplayData
impl DisplayData
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name of the application provider that appears in the portal.
sourcepub fn icon_url(&self) -> Option<&str>
pub fn icon_url(&self) -> Option<&str>
A URL that points to an icon that represents the application provider.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the application provider that appears in the portal.
source§impl DisplayData
impl DisplayData
sourcepub fn builder() -> DisplayDataBuilder
pub fn builder() -> DisplayDataBuilder
Creates a new builder-style object to manufacture DisplayData
.
Trait Implementations§
source§impl Clone for DisplayData
impl Clone for DisplayData
source§fn clone(&self) -> DisplayData
fn clone(&self) -> DisplayData
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 Debug for DisplayData
impl Debug for DisplayData
source§impl PartialEq for DisplayData
impl PartialEq for DisplayData
source§fn eq(&self, other: &DisplayData) -> bool
fn eq(&self, other: &DisplayData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DisplayData
Auto Trait Implementations§
impl RefUnwindSafe for DisplayData
impl Send for DisplayData
impl Sync for DisplayData
impl Unpin for DisplayData
impl UnwindSafe for DisplayData
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.