pub struct IntervalT {
pub lower_bound: TimeT,
pub upper_bound: TimeT,
}Expand description
TimeBase::IntervalT (Spec §1.3.2.5) — Zeit-Intervall mit
lower_bound und upper_bound. Lower > Upper ist invalid und
wird beim Konstruieren rejected.
Fields§
§lower_bound: TimeTUntere Grenze.
upper_bound: TimeTObere Grenze.
Implementations§
Trait Implementations§
impl Copy for IntervalT
impl Eq for IntervalT
impl StructuralPartialEq for IntervalT
Auto Trait Implementations§
impl Freeze for IntervalT
impl RefUnwindSafe for IntervalT
impl Send for IntervalT
impl Sync for IntervalT
impl Unpin for IntervalT
impl UnsafeUnpin for IntervalT
impl UnwindSafe for IntervalT
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