Struct aws_sdk_devopsguru::model::EventTimeRange
source · [−]#[non_exhaustive]pub struct EventTimeRange {
pub from_time: Option<DateTime>,
pub to_time: Option<DateTime>,
}
Expand description
The time range during which an Amazon Web Services event occurred. Amazon Web Services resource events and metrics are analyzed by DevOps Guru to find anomalous behavior and provide recommendations to improve your operational solutions.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.from_time: Option<DateTime>
The time when the event started.
to_time: Option<DateTime>
The time when the event ended.
Implementations
sourceimpl EventTimeRange
impl EventTimeRange
sourceimpl EventTimeRange
impl EventTimeRange
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EventTimeRange
.
Trait Implementations
sourceimpl Clone for EventTimeRange
impl Clone for EventTimeRange
sourcefn clone(&self) -> EventTimeRange
fn clone(&self) -> EventTimeRange
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EventTimeRange
impl Debug for EventTimeRange
sourceimpl PartialEq<EventTimeRange> for EventTimeRange
impl PartialEq<EventTimeRange> for EventTimeRange
sourcefn eq(&self, other: &EventTimeRange) -> bool
fn eq(&self, other: &EventTimeRange) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EventTimeRange) -> bool
fn ne(&self, other: &EventTimeRange) -> bool
This method tests for !=
.
impl StructuralPartialEq for EventTimeRange
Auto Trait Implementations
impl RefUnwindSafe for EventTimeRange
impl Send for EventTimeRange
impl Sync for EventTimeRange
impl Unpin for EventTimeRange
impl UnwindSafe for EventTimeRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more