Struct plotters_iced::sample::lttb::Cast
source · pub struct Cast<S, T, F>where
S: LttbSource,
T: DataPoint,
F: Fn(S::Item) -> T,{ /* private fields */ }Expand description
map data item to another type
Trait Implementations§
source§impl<S, T, F> LttbSource for Cast<S, T, F>where
S: LttbSource,
T: DataPoint,
F: Fn(S::Item) -> T,
impl<S, T, F> LttbSource for Cast<S, T, F>where
S: LttbSource,
T: DataPoint,
F: Fn(S::Item) -> T,
§type Item = T
type Item = T
data item of
LttbSourcesource§fn len(&self) -> usize
fn len(&self) -> usize
length of
LttbSourcesource§fn is_empty(&self) -> bool
fn is_empty(&self) -> bool
is
LttbSource emptyAuto Trait Implementations§
impl<S, T, F> RefUnwindSafe for Cast<S, T, F>where
F: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, T, F> Send for Cast<S, T, F>where
F: Send,
S: Send,
impl<S, T, F> Sync for Cast<S, T, F>where
F: Sync,
S: Sync,
impl<S, T, F> Unpin for Cast<S, T, F>where
F: Unpin,
S: Unpin,
impl<S, T, F> UnwindSafe for Cast<S, T, F>where
F: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified
method
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default
source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
source§fn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined
range, otherwise an
OutOfBounds error is returned which contains
the unclamped color. Read more