pub struct SlotDateTimeRangeRequest {
pub earliest_time: String,
pub latest_time: String,
}
Expand description
Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day.
Fields§
§earliest_time: String
The earliest date and time, in UTC, for the Scheduled Instance to start.
latest_time: String
The latest date and time, in UTC, for the Scheduled Instance to start. This value must be later than or equal to the earliest date and at most three months in the future.
Trait Implementations§
Source§impl Clone for SlotDateTimeRangeRequest
impl Clone for SlotDateTimeRangeRequest
Source§fn clone(&self) -> SlotDateTimeRangeRequest
fn clone(&self) -> SlotDateTimeRangeRequest
Returns a duplicate 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 SlotDateTimeRangeRequest
impl Debug for SlotDateTimeRangeRequest
Source§impl Default for SlotDateTimeRangeRequest
impl Default for SlotDateTimeRangeRequest
Source§fn default() -> SlotDateTimeRangeRequest
fn default() -> SlotDateTimeRangeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SlotDateTimeRangeRequest
impl PartialEq for SlotDateTimeRangeRequest
impl StructuralPartialEq for SlotDateTimeRangeRequest
Auto Trait Implementations§
impl Freeze for SlotDateTimeRangeRequest
impl RefUnwindSafe for SlotDateTimeRangeRequest
impl Send for SlotDateTimeRangeRequest
impl Sync for SlotDateTimeRangeRequest
impl Unpin for SlotDateTimeRangeRequest
impl UnwindSafe for SlotDateTimeRangeRequest
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