Struct re_types::blueprint::views::TimeSeriesView
source · pub struct TimeSeriesView {
pub axis_y: ScalarAxis,
pub plot_legend: PlotLegend,
pub time_ranges: VisibleTimeRanges,
}
Expand description
View: A time series view for scalars over time, for use with the Scalars
archetype.
Fields§
§axis_y: ScalarAxis
Configures the vertical axis of the plot.
plot_legend: PlotLegend
Configures the legend of the plot.
time_ranges: VisibleTimeRanges
Configures which range on each timeline is shown by this view (unless specified differently per entity).
If not specified, the default is to show the entire timeline. If a timeline is specified more than once, the first entry will be used.
Trait Implementations§
source§impl Clone for TimeSeriesView
impl Clone for TimeSeriesView
source§fn clone(&self) -> TimeSeriesView
fn clone(&self) -> TimeSeriesView
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 TimeSeriesView
impl Debug for TimeSeriesView
source§impl SizeBytes for TimeSeriesView
impl SizeBytes for TimeSeriesView
source§fn heap_size_bytes(&self) -> u64
fn heap_size_bytes(&self) -> u64
Returns the total size of
self
on the heap, in bytes.source§fn total_size_bytes(&self) -> u64
fn total_size_bytes(&self) -> u64
Returns the total size of
self
in bytes, accounting for both stack and heap space.source§fn stack_size_bytes(&self) -> u64
fn stack_size_bytes(&self) -> u64
Returns the total size of
self
on the stack, in bytes. Read moresource§impl View for TimeSeriesView
impl View for TimeSeriesView
Auto Trait Implementations§
impl Freeze for TimeSeriesView
impl RefUnwindSafe for TimeSeriesView
impl Send for TimeSeriesView
impl Sync for TimeSeriesView
impl Unpin for TimeSeriesView
impl UnwindSafe for TimeSeriesView
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more