Struct aws_sdk_connectcases::types::LayoutConfiguration
source · #[non_exhaustive]pub struct LayoutConfiguration {
pub default_layout: Option<String>,
}
Expand description
Object to store configuration of layouts associated to the template.
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.default_layout: Option<String>
Unique identifier of a layout.
Implementations§
source§impl LayoutConfiguration
impl LayoutConfiguration
sourcepub fn default_layout(&self) -> Option<&str>
pub fn default_layout(&self) -> Option<&str>
Unique identifier of a layout.
source§impl LayoutConfiguration
impl LayoutConfiguration
sourcepub fn builder() -> LayoutConfigurationBuilder
pub fn builder() -> LayoutConfigurationBuilder
Creates a new builder-style object to manufacture LayoutConfiguration
.
Trait Implementations§
source§impl Clone for LayoutConfiguration
impl Clone for LayoutConfiguration
source§fn clone(&self) -> LayoutConfiguration
fn clone(&self) -> LayoutConfiguration
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 LayoutConfiguration
impl Debug for LayoutConfiguration
source§impl PartialEq for LayoutConfiguration
impl PartialEq for LayoutConfiguration
source§fn eq(&self, other: &LayoutConfiguration) -> bool
fn eq(&self, other: &LayoutConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LayoutConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for LayoutConfiguration
impl Send for LayoutConfiguration
impl Sync for LayoutConfiguration
impl Unpin for LayoutConfiguration
impl UnwindSafe for LayoutConfiguration
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