#[non_exhaustive]pub enum PlotLineStyle {
Stepped,
Smooth,
}
Expand description
The style of lines of a plot, shown in the Tracy profiler UI.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Stepped
Lines will be stepped (ie look like a staircase).
Smooth
Lines will be smooth (interpolating a line between two values).
Trait Implementations§
Source§impl Clone for PlotLineStyle
impl Clone for PlotLineStyle
Source§fn clone(&self) -> PlotLineStyle
fn clone(&self) -> PlotLineStyle
Returns a copy 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 moreSource§impl Debug for PlotLineStyle
impl Debug for PlotLineStyle
Source§impl Default for PlotLineStyle
impl Default for PlotLineStyle
Source§fn default() -> PlotLineStyle
fn default() -> PlotLineStyle
Returns the “default value” for a type. Read more
Source§impl Hash for PlotLineStyle
impl Hash for PlotLineStyle
Source§impl Ord for PlotLineStyle
impl Ord for PlotLineStyle
Source§fn cmp(&self, other: &PlotLineStyle) -> Ordering
fn cmp(&self, other: &PlotLineStyle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PlotLineStyle
impl PartialEq for PlotLineStyle
Source§impl PartialOrd for PlotLineStyle
impl PartialOrd for PlotLineStyle
impl Copy for PlotLineStyle
impl Eq for PlotLineStyle
impl StructuralPartialEq for PlotLineStyle
Auto Trait Implementations§
impl Freeze for PlotLineStyle
impl RefUnwindSafe for PlotLineStyle
impl Send for PlotLineStyle
impl Sync for PlotLineStyle
impl Unpin for PlotLineStyle
impl UnwindSafe for PlotLineStyle
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