Struct aws_sdk_codeguruprofiler::types::ProfileTime
source · #[non_exhaustive]pub struct ProfileTime {
pub start: Option<DateTime>,
}
Expand description
Contains the start time of a profile.
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.start: Option<DateTime>
The start time of a profile. It is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
Implementations§
source§impl ProfileTime
impl ProfileTime
source§impl ProfileTime
impl ProfileTime
sourcepub fn builder() -> ProfileTimeBuilder
pub fn builder() -> ProfileTimeBuilder
Creates a new builder-style object to manufacture ProfileTime
.
Trait Implementations§
source§impl Clone for ProfileTime
impl Clone for ProfileTime
source§fn clone(&self) -> ProfileTime
fn clone(&self) -> ProfileTime
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 ProfileTime
impl Debug for ProfileTime
source§impl PartialEq for ProfileTime
impl PartialEq for ProfileTime
source§fn eq(&self, other: &ProfileTime) -> bool
fn eq(&self, other: &ProfileTime) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProfileTime
Auto Trait Implementations§
impl RefUnwindSafe for ProfileTime
impl Send for ProfileTime
impl Sync for ProfileTime
impl Unpin for ProfileTime
impl UnwindSafe for ProfileTime
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.