pub struct TimescaleMark {
pub time: i64,
pub color: String,
pub label: String,
pub tooltip: String,
}Expand description
Timescale mark (event on the timescale)
Fields§
§time: i64Mark timestamp (Unix milliseconds)
color: StringMark color
label: StringMark label
tooltip: StringMark tooltip
Trait Implementations§
Source§impl Clone for TimescaleMark
impl Clone for TimescaleMark
Source§fn clone(&self) -> TimescaleMark
fn clone(&self) -> TimescaleMark
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 moreAuto Trait Implementations§
impl Freeze for TimescaleMark
impl RefUnwindSafe for TimescaleMark
impl Send for TimescaleMark
impl Sync for TimescaleMark
impl Unpin for TimescaleMark
impl UnsafeUnpin for TimescaleMark
impl UnwindSafe for TimescaleMark
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