pub struct DatetimeQuery<'a> { /* private fields */ }
Expand description
Query parameters for endpoints that accept a datetime range.
Implementations§
Source§impl<'a> DatetimeQuery<'a>
impl<'a> DatetimeQuery<'a>
Sourcepub fn builder() -> DatetimeQueryBuilder<'a, ((), (), ())>
pub fn builder() -> DatetimeQueryBuilder<'a, ((), (), ())>
Create a builder for building DatetimeQuery
.
On the builder, call .start_datetime(...)
(optional), .end_datetime(...)
(optional), .next_token(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of DatetimeQuery
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DatetimeQuery<'a>
impl<'a> RefUnwindSafe for DatetimeQuery<'a>
impl<'a> Send for DatetimeQuery<'a>
impl<'a> Sync for DatetimeQuery<'a>
impl<'a> Unpin for DatetimeQuery<'a>
impl<'a> UnwindSafe for DatetimeQuery<'a>
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