Skip to main content

TimeExpression

Enum TimeExpression 

Source
#[non_exhaustive]
pub enum TimeExpression { ClockTime { hours: u32, minutes: u8, seconds: u8, fraction: Option<String>, frames: Option<u32>, sub_frames: Option<u32>, }, OffsetTime { count: u64, fraction: Option<String>, metric: TimeMetric, }, WallclockTime { form: WallclockForm, }, }
Expand description

A parsed time expression.

While the grammar in §12.3.1 defines three forms (clock-time, offset-time, wallclock-time), we represent all parsed time expressions uniformly.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

ClockTime

Clock-time: HH:MM:SS[.fraction][:frames[.sub-frames]]

Fields

§hours: u32

Hours (unbounded — can be ≥ 100).

§minutes: u8

Minutes [0, 59].

§seconds: u8

Seconds [0, 60] (60 = leap second).

§fraction: Option<String>

Fractional seconds, as a string of digits after the decimal point.

§frames: Option<u32>

Frames component (HH:MM:SS:FF).

§sub_frames: Option<u32>

Sub-frames component (HH:MM:SS:FF.SF).

§

OffsetTime

Offset-time: count[.fraction]metric

Fields

§count: u64

The integer count part.

§fraction: Option<String>

Fractional part, as a string of digits.

§metric: TimeMetric

The metric unit.

§

WallclockTime

Wallclock-time: wallclock(date-time|wall-time|date)

Fields

§form: WallclockForm

The wallclock form: date-time, wall-time, or date.

Trait Implementations§

Source§

impl Clone for TimeExpression

Source§

fn clone(&self) -> TimeExpression

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TimeExpression

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for TimeExpression

Source§

fn eq(&self, other: &TimeExpression) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for TimeExpression

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.