pub struct TimeRangeFilter {
pub end_time: Option<String>,
pub start_time: Option<String>,
}
Expand description
Filters update actions from the service updates that are in available status during the time range.
Fields§
§end_time: Option<String>
The end time of the time range filter
start_time: Option<String>
The start time of the time range filter
Trait Implementations§
Source§impl Clone for TimeRangeFilter
impl Clone for TimeRangeFilter
Source§fn clone(&self) -> TimeRangeFilter
fn clone(&self) -> TimeRangeFilter
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 TimeRangeFilter
impl Debug for TimeRangeFilter
Source§impl Default for TimeRangeFilter
impl Default for TimeRangeFilter
Source§fn default() -> TimeRangeFilter
fn default() -> TimeRangeFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for TimeRangeFilter
impl PartialEq for TimeRangeFilter
impl StructuralPartialEq for TimeRangeFilter
Auto Trait Implementations§
impl Freeze for TimeRangeFilter
impl RefUnwindSafe for TimeRangeFilter
impl Send for TimeRangeFilter
impl Sync for TimeRangeFilter
impl Unpin for TimeRangeFilter
impl UnwindSafe for TimeRangeFilter
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