pub struct SlotStartTimeRangeRequest {
pub earliest_time: Option<String>,
pub latest_time: Option<String>,
}
Expand description
Describes the time period for a Scheduled Instance to start its first schedule.
Fields§
§earliest_time: Option<String>
The earliest date and time, in UTC, for the Scheduled Instance to start.
latest_time: Option<String>
The latest date and time, in UTC, for the Scheduled Instance to start.
Trait Implementations§
Source§impl Clone for SlotStartTimeRangeRequest
impl Clone for SlotStartTimeRangeRequest
Source§fn clone(&self) -> SlotStartTimeRangeRequest
fn clone(&self) -> SlotStartTimeRangeRequest
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 SlotStartTimeRangeRequest
impl Debug for SlotStartTimeRangeRequest
Source§impl Default for SlotStartTimeRangeRequest
impl Default for SlotStartTimeRangeRequest
Source§fn default() -> SlotStartTimeRangeRequest
fn default() -> SlotStartTimeRangeRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for SlotStartTimeRangeRequest
Auto Trait Implementations§
impl Freeze for SlotStartTimeRangeRequest
impl RefUnwindSafe for SlotStartTimeRangeRequest
impl Send for SlotStartTimeRangeRequest
impl Sync for SlotStartTimeRangeRequest
impl Unpin for SlotStartTimeRangeRequest
impl UnwindSafe for SlotStartTimeRangeRequest
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