pub struct TimeMapPoint {
pub input: Time,
pub output: Time,
}Expand description
One (input -> output) breakpoint in a piecewise-linear time map.
Fields§
§input: TimeSource time of the breakpoint.
output: TimeMapped destination time of the breakpoint.
Implementations§
Trait Implementations§
Source§impl Clone for TimeMapPoint
impl Clone for TimeMapPoint
Source§fn clone(&self) -> TimeMapPoint
fn clone(&self) -> TimeMapPoint
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 TimeMapPoint
impl Debug for TimeMapPoint
impl Eq for TimeMapPoint
Source§impl PartialEq for TimeMapPoint
impl PartialEq for TimeMapPoint
impl StructuralPartialEq for TimeMapPoint
Auto Trait Implementations§
impl Freeze for TimeMapPoint
impl RefUnwindSafe for TimeMapPoint
impl Send for TimeMapPoint
impl Sync for TimeMapPoint
impl Unpin for TimeMapPoint
impl UnsafeUnpin for TimeMapPoint
impl UnwindSafe for TimeMapPoint
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