#[non_exhaustive]pub struct GetResourceLogLevelOutput {
pub log_level: Option<LogLevel>,
/* 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.log_level: Option<LogLevel>
The log level for a log message. The log levels can be disabled, or set to ERROR
to display less verbose logs containing only error information, or to INFO
for more detailed logs.
Implementations§
source§impl GetResourceLogLevelOutput
impl GetResourceLogLevelOutput
sourcepub fn builder() -> GetResourceLogLevelOutputBuilder
pub fn builder() -> GetResourceLogLevelOutputBuilder
Creates a new builder-style object to manufacture GetResourceLogLevelOutput
.
Trait Implementations§
source§impl Clone for GetResourceLogLevelOutput
impl Clone for GetResourceLogLevelOutput
source§fn clone(&self) -> GetResourceLogLevelOutput
fn clone(&self) -> GetResourceLogLevelOutput
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 GetResourceLogLevelOutput
impl Debug for GetResourceLogLevelOutput
source§impl PartialEq for GetResourceLogLevelOutput
impl PartialEq for GetResourceLogLevelOutput
source§fn eq(&self, other: &GetResourceLogLevelOutput) -> bool
fn eq(&self, other: &GetResourceLogLevelOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetResourceLogLevelOutput
impl RequestId for GetResourceLogLevelOutput
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 GetResourceLogLevelOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetResourceLogLevelOutput
impl Send for GetResourceLogLevelOutput
impl Sync for GetResourceLogLevelOutput
impl Unpin for GetResourceLogLevelOutput
impl UnwindSafe for GetResourceLogLevelOutput
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