Struct aws_sdk_licensemanager::types::DatetimeRange
source · #[non_exhaustive]pub struct DatetimeRange {
pub begin: Option<String>,
pub end: Option<String>,
}Expand description
Describes a time range, in ISO8601-UTC format.
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.begin: Option<String>Start of the time range.
end: Option<String>End of the time range.
Implementations§
source§impl DatetimeRange
impl DatetimeRange
source§impl DatetimeRange
impl DatetimeRange
sourcepub fn builder() -> DatetimeRangeBuilder
pub fn builder() -> DatetimeRangeBuilder
Creates a new builder-style object to manufacture DatetimeRange.
Trait Implementations§
source§impl Clone for DatetimeRange
impl Clone for DatetimeRange
source§fn clone(&self) -> DatetimeRange
fn clone(&self) -> DatetimeRange
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 DatetimeRange
impl Debug for DatetimeRange
source§impl PartialEq<DatetimeRange> for DatetimeRange
impl PartialEq<DatetimeRange> for DatetimeRange
source§fn eq(&self, other: &DatetimeRange) -> bool
fn eq(&self, other: &DatetimeRange) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatetimeRange
Auto Trait Implementations§
impl RefUnwindSafe for DatetimeRange
impl Send for DatetimeRange
impl Sync for DatetimeRange
impl Unpin for DatetimeRange
impl UnwindSafe for DatetimeRange
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