#[non_exhaustive]pub struct GetBrowserSettingsOutput {
pub browser_settings: Option<BrowserSettings>,
/* 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.browser_settings: Option<BrowserSettings>
The browser settings.
Implementations§
source§impl GetBrowserSettingsOutput
impl GetBrowserSettingsOutput
sourcepub fn browser_settings(&self) -> Option<&BrowserSettings>
pub fn browser_settings(&self) -> Option<&BrowserSettings>
The browser settings.
source§impl GetBrowserSettingsOutput
impl GetBrowserSettingsOutput
sourcepub fn builder() -> GetBrowserSettingsOutputBuilder
pub fn builder() -> GetBrowserSettingsOutputBuilder
Creates a new builder-style object to manufacture GetBrowserSettingsOutput
.
Trait Implementations§
source§impl Clone for GetBrowserSettingsOutput
impl Clone for GetBrowserSettingsOutput
source§fn clone(&self) -> GetBrowserSettingsOutput
fn clone(&self) -> GetBrowserSettingsOutput
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 GetBrowserSettingsOutput
impl Debug for GetBrowserSettingsOutput
source§impl PartialEq for GetBrowserSettingsOutput
impl PartialEq for GetBrowserSettingsOutput
source§fn eq(&self, other: &GetBrowserSettingsOutput) -> bool
fn eq(&self, other: &GetBrowserSettingsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetBrowserSettingsOutput
impl RequestId for GetBrowserSettingsOutput
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 GetBrowserSettingsOutput
Auto Trait Implementations§
impl Freeze for GetBrowserSettingsOutput
impl RefUnwindSafe for GetBrowserSettingsOutput
impl Send for GetBrowserSettingsOutput
impl Sync for GetBrowserSettingsOutput
impl Unpin for GetBrowserSettingsOutput
impl UnwindSafe for GetBrowserSettingsOutput
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.