Struct aws_sdk_connectcases::types::BasicLayout  
source · #[non_exhaustive]pub struct BasicLayout {
    pub top_panel: Option<LayoutSections>,
    pub more_info: Option<LayoutSections>,
}Expand description
Content specific to BasicLayout type. It configures fields in the top panel and More Info tab of agent application. 
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.top_panel: Option<LayoutSections>This represents sections in a panel of the page layout.
more_info: Option<LayoutSections>This represents sections in a tab of the page layout.
Implementations§
source§impl BasicLayout
 
impl BasicLayout
sourcepub fn top_panel(&self) -> Option<&LayoutSections>
 
pub fn top_panel(&self) -> Option<&LayoutSections>
This represents sections in a panel of the page layout.
sourcepub fn more_info(&self) -> Option<&LayoutSections>
 
pub fn more_info(&self) -> Option<&LayoutSections>
This represents sections in a tab of the page layout.
source§impl BasicLayout
 
impl BasicLayout
sourcepub fn builder() -> BasicLayoutBuilder
 
pub fn builder() -> BasicLayoutBuilder
Creates a new builder-style object to manufacture BasicLayout.
Trait Implementations§
source§impl Clone for BasicLayout
 
impl Clone for BasicLayout
source§fn clone(&self) -> BasicLayout
 
fn clone(&self) -> BasicLayout
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 BasicLayout
 
impl Debug for BasicLayout
source§impl PartialEq for BasicLayout
 
impl PartialEq for BasicLayout
source§fn eq(&self, other: &BasicLayout) -> bool
 
fn eq(&self, other: &BasicLayout) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BasicLayout
Auto Trait Implementations§
impl RefUnwindSafe for BasicLayout
impl Send for BasicLayout
impl Sync for BasicLayout
impl Unpin for BasicLayout
impl UnwindSafe for BasicLayout
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