pub struct TransitionRow {
pub at: i64,
pub before: Observation,
pub after: Observation,
}Expand description
One explicit transition: the instant, and the local-time type just before and at it.
Fields§
§at: i64§before: Observation§after: ObservationTrait Implementations§
Source§impl Clone for TransitionRow
impl Clone for TransitionRow
Source§fn clone(&self) -> TransitionRow
fn clone(&self) -> TransitionRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransitionRow
impl Debug for TransitionRow
impl Eq for TransitionRow
Source§impl PartialEq for TransitionRow
impl PartialEq for TransitionRow
Source§fn eq(&self, other: &TransitionRow) -> bool
fn eq(&self, other: &TransitionRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransitionRow
Auto Trait Implementations§
impl Freeze for TransitionRow
impl RefUnwindSafe for TransitionRow
impl Send for TransitionRow
impl Sync for TransitionRow
impl Unpin for TransitionRow
impl UnsafeUnpin for TransitionRow
impl UnwindSafe for TransitionRow
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