pub struct HistogramLayer<'a> {
pub bins: &'a [u64],
pub color: Srgba8,
}Available on crate feature
debug-window only.Expand description
One translucent histogram layer in a multi-layer plot.
bins is borrowed (it’s just a slice into a Histogram’s bin
counts) so layers are cheap to construct and keep no ownership of
the histogram itself.
The renderer treats color.a as straight (non-premultiplied)
alpha. Lower alpha values let underlying layers show through —
pick ~120..180 for typical 2–3 layer overlays.
Fields§
§bins: &'a [u64]Bin counts to draw, one entry per bar.
color: Srgba8Bar fill colour (RGBA, straight alpha).
Implementations§
Source§impl<'a> HistogramLayer<'a>
impl<'a> HistogramLayer<'a>
Sourcepub fn from_histogram<S, V>(h: &'a Histogram<S, V>, color: Srgba8) -> Self
pub fn from_histogram<S, V>(h: &'a Histogram<S, V>, color: Srgba8) -> Self
Build a layer from a Histogram and a colour.
Equivalent to HistogramLayer::new(h.bins(), color). Generic
over both the strategy S and the channel value type V,
because only the strategy-independent bins() slice is read.
Trait Implementations§
Source§impl<'a> Clone for HistogramLayer<'a>
impl<'a> Clone for HistogramLayer<'a>
Source§fn clone(&self) -> HistogramLayer<'a>
fn clone(&self) -> HistogramLayer<'a>
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 moreimpl<'a> Copy for HistogramLayer<'a>
Auto Trait Implementations§
impl<'a> Freeze for HistogramLayer<'a>
impl<'a> RefUnwindSafe for HistogramLayer<'a>
impl<'a> Send for HistogramLayer<'a>
impl<'a> Sync for HistogramLayer<'a>
impl<'a> Unpin for HistogramLayer<'a>
impl<'a> UnsafeUnpin for HistogramLayer<'a>
impl<'a> UnwindSafe for HistogramLayer<'a>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ConvertPixelExt for T
impl<T> ConvertPixelExt for T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FromLinear<T> for T
impl<T> FromLinear<T> for T
Source§fn from_linear(acc: T) -> T
fn from_linear(acc: T) -> T
Converts a linear-space accumulator value back to this pixel type, applying rounding and clamping. Read more