pub enum TimeWindowType {
SelectAll = 0,
TimeTagToTimeTag = 1,
FromTimeTag = 2,
ToTimeTag = 3,
}Expand description
Time window types as specified in ECSS-E-ST-70-41C 8.11.3
Variants§
SelectAll = 0
Select all.
TimeTagToTimeTag = 1
From time tag to time tag.
FromTimeTag = 2
Starting from a time tag.
ToTimeTag = 3
Until a time tag.
Trait Implementations§
Source§impl Clone for TimeWindowType
impl Clone for TimeWindowType
Source§fn clone(&self) -> TimeWindowType
fn clone(&self) -> TimeWindowType
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 TimeWindowType
impl Debug for TimeWindowType
Source§impl<'de> Deserialize<'de> for TimeWindowType
impl<'de> Deserialize<'de> for TimeWindowType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Format for TimeWindowType
impl Format for TimeWindowType
Source§impl PartialEq for TimeWindowType
impl PartialEq for TimeWindowType
Source§impl Serialize for TimeWindowType
impl Serialize for TimeWindowType
impl Copy for TimeWindowType
impl Eq for TimeWindowType
impl StructuralPartialEq for TimeWindowType
Auto Trait Implementations§
impl Freeze for TimeWindowType
impl RefUnwindSafe for TimeWindowType
impl Send for TimeWindowType
impl Sync for TimeWindowType
impl Unpin for TimeWindowType
impl UnwindSafe for TimeWindowType
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