Struct aws_sdk_rum::types::CustomEvents
source · #[non_exhaustive]pub struct CustomEvents {
pub status: Option<CustomEventsStatus>,
}
Expand description
A structure that contains information about custom events for this app monitor.
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.status: Option<CustomEventsStatus>
Specifies whether this app monitor allows the web client to define and send custom events. The default is for custom events to be DISABLED
.
Implementations§
source§impl CustomEvents
impl CustomEvents
sourcepub fn status(&self) -> Option<&CustomEventsStatus>
pub fn status(&self) -> Option<&CustomEventsStatus>
Specifies whether this app monitor allows the web client to define and send custom events. The default is for custom events to be DISABLED
.
source§impl CustomEvents
impl CustomEvents
sourcepub fn builder() -> CustomEventsBuilder
pub fn builder() -> CustomEventsBuilder
Creates a new builder-style object to manufacture CustomEvents
.
Trait Implementations§
source§impl Clone for CustomEvents
impl Clone for CustomEvents
source§fn clone(&self) -> CustomEvents
fn clone(&self) -> CustomEvents
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 CustomEvents
impl Debug for CustomEvents
source§impl PartialEq for CustomEvents
impl PartialEq for CustomEvents
source§fn eq(&self, other: &CustomEvents) -> bool
fn eq(&self, other: &CustomEvents) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomEvents
Auto Trait Implementations§
impl Freeze for CustomEvents
impl RefUnwindSafe for CustomEvents
impl Send for CustomEvents
impl Sync for CustomEvents
impl Unpin for CustomEvents
impl UnwindSafe for CustomEvents
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.