pub struct PlotWithText<T, N> { /* private fields */ }Trait Implementations§
Source§impl<T, N, X, Y> BuildChart<X, Y> for PlotWithText<T, N>where
for<'a> MyAxis<'a, X>: Ranged<ValueType = X> + ValueFormatter<X>,
for<'a> AxisNumber<'a, Y>: Ranged<ValueType = Y> + ValueFormatter<Y>,
X: Clone + 'static,
Y: Clone + 'static,
Self: GetAxis<X, Y>,
impl<T, N, X, Y> BuildChart<X, Y> for PlotWithText<T, N>where
for<'a> MyAxis<'a, X>: Ranged<ValueType = X> + ValueFormatter<X>,
for<'a> AxisNumber<'a, Y>: Ranged<ValueType = Y> + ValueFormatter<Y>,
X: Clone + 'static,
Y: Clone + 'static,
Self: GetAxis<X, Y>,
fn build_chart(&self, area: &DrawingArea<SVGBackend<'_>, Shift>)
Source§impl<T, N> From<(T, N)> for PlotWithText<T, N>
impl<T, N> From<(T, N)> for PlotWithText<T, N>
Source§impl<T, N, K> From<(T, N, K)> for PlotWithText<T, N>
impl<T, N, K> From<(T, N, K)> for PlotWithText<T, N>
Source§impl<T, N, K, J> From<(T, N, K, J)> for PlotWithText<T, N>
impl<T, N, K, J> From<(T, N, K, J)> for PlotWithText<T, N>
Source§fn from(value: (T, N, K, J)) -> Self
fn from(value: (T, N, K, J)) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T, N> Freeze for PlotWithText<T, N>
impl<T, N> RefUnwindSafe for PlotWithText<T, N>where
T: RefUnwindSafe,
N: RefUnwindSafe,
impl<T, N> Send for PlotWithText<T, N>
impl<T, N> Sync for PlotWithText<T, N>
impl<T, N> Unpin for PlotWithText<T, N>
impl<T, N> UnwindSafe for PlotWithText<T, N>where
T: UnwindSafe,
N: UnwindSafe,
Blanket Implementations§
Source§impl<T> BoolToOption for T
impl<T> BoolToOption for T
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> GenUniqueId for T
impl<T> GenUniqueId for T
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