pub struct TimeMarker {
pub timestamp: u64,
pub label: String,
pub color: Color,
pub style: MarkerStyle,
}Expand description
Marker on the time series chart
Fields§
§timestamp: u64Timestamp for the marker
label: StringLabel for the marker
color: ColorMarker color
style: MarkerStyleMarker style
Implementations§
Trait Implementations§
Source§impl Clone for TimeMarker
impl Clone for TimeMarker
Source§fn clone(&self) -> TimeMarker
fn clone(&self) -> TimeMarker
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 TimeMarker
impl RefUnwindSafe for TimeMarker
impl Send for TimeMarker
impl Sync for TimeMarker
impl Unpin for TimeMarker
impl UnwindSafe for TimeMarker
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