Struct aws_sdk_workspaces::operation::describe_client_branding::DescribeClientBrandingOutput
source · #[non_exhaustive]pub struct DescribeClientBrandingOutput {
pub device_type_windows: Option<DefaultClientBrandingAttributes>,
pub device_type_osx: Option<DefaultClientBrandingAttributes>,
pub device_type_android: Option<DefaultClientBrandingAttributes>,
pub device_type_ios: Option<IosClientBrandingAttributes>,
pub device_type_linux: Option<DefaultClientBrandingAttributes>,
pub device_type_web: Option<DefaultClientBrandingAttributes>,
/* private fields */
}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.device_type_windows: Option<DefaultClientBrandingAttributes>The branding information for Windows devices.
device_type_osx: Option<DefaultClientBrandingAttributes>The branding information for macOS devices.
device_type_android: Option<DefaultClientBrandingAttributes>The branding information for Android devices.
device_type_ios: Option<IosClientBrandingAttributes>The branding information for iOS devices.
device_type_linux: Option<DefaultClientBrandingAttributes>The branding information for Linux devices.
device_type_web: Option<DefaultClientBrandingAttributes>The branding information for Web access.
Implementations§
source§impl DescribeClientBrandingOutput
impl DescribeClientBrandingOutput
sourcepub fn device_type_windows(&self) -> Option<&DefaultClientBrandingAttributes>
pub fn device_type_windows(&self) -> Option<&DefaultClientBrandingAttributes>
The branding information for Windows devices.
sourcepub fn device_type_osx(&self) -> Option<&DefaultClientBrandingAttributes>
pub fn device_type_osx(&self) -> Option<&DefaultClientBrandingAttributes>
The branding information for macOS devices.
sourcepub fn device_type_android(&self) -> Option<&DefaultClientBrandingAttributes>
pub fn device_type_android(&self) -> Option<&DefaultClientBrandingAttributes>
The branding information for Android devices.
sourcepub fn device_type_ios(&self) -> Option<&IosClientBrandingAttributes>
pub fn device_type_ios(&self) -> Option<&IosClientBrandingAttributes>
The branding information for iOS devices.
sourcepub fn device_type_linux(&self) -> Option<&DefaultClientBrandingAttributes>
pub fn device_type_linux(&self) -> Option<&DefaultClientBrandingAttributes>
The branding information for Linux devices.
sourcepub fn device_type_web(&self) -> Option<&DefaultClientBrandingAttributes>
pub fn device_type_web(&self) -> Option<&DefaultClientBrandingAttributes>
The branding information for Web access.
source§impl DescribeClientBrandingOutput
impl DescribeClientBrandingOutput
sourcepub fn builder() -> DescribeClientBrandingOutputBuilder
pub fn builder() -> DescribeClientBrandingOutputBuilder
Creates a new builder-style object to manufacture DescribeClientBrandingOutput.
Trait Implementations§
source§impl Clone for DescribeClientBrandingOutput
impl Clone for DescribeClientBrandingOutput
source§fn clone(&self) -> DescribeClientBrandingOutput
fn clone(&self) -> DescribeClientBrandingOutput
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 DescribeClientBrandingOutput
impl Debug for DescribeClientBrandingOutput
source§impl PartialEq for DescribeClientBrandingOutput
impl PartialEq for DescribeClientBrandingOutput
source§fn eq(&self, other: &DescribeClientBrandingOutput) -> bool
fn eq(&self, other: &DescribeClientBrandingOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeClientBrandingOutput
impl RequestId for DescribeClientBrandingOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeClientBrandingOutput
Auto Trait Implementations§
impl Freeze for DescribeClientBrandingOutput
impl RefUnwindSafe for DescribeClientBrandingOutput
impl Send for DescribeClientBrandingOutput
impl Sync for DescribeClientBrandingOutput
impl Unpin for DescribeClientBrandingOutput
impl UnwindSafe for DescribeClientBrandingOutput
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.