#[non_exhaustive]pub enum InnerLayout<X: Tick, Y: Tick> {
AxisMarker(AxisMarker),
XGridLine(XGridLine<X>),
YGridLine(YGridLine<Y>),
XGuideLine(XGuideLine),
YGuideLine(YGuideLine),
Legend(InsetLegend),
}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.
AxisMarker(AxisMarker)
Axis marker. See AxisMarker for details.
XGridLine(XGridLine<X>)
X grid line. See XGridLine for details.
YGridLine(YGridLine<Y>)
Y grid line. See YGridLine for details.
XGuideLine(XGuideLine)
X guide line. See XGuideLine for details.
YGuideLine(YGuideLine)
Y guide line. See YGuideLine for details.
Legend(InsetLegend)
Inset legend. See InsetLegend for details.
Trait Implementations§
Source§impl<X: Clone + Tick, Y: Clone + Tick> Clone for InnerLayout<X, Y>
impl<X: Clone + Tick, Y: Clone + Tick> Clone for InnerLayout<X, Y>
Source§fn clone(&self) -> InnerLayout<X, Y>
fn clone(&self) -> InnerLayout<X, Y>
Returns a duplicate 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<X: Tick, Y: Tick> From<AxisMarker> for InnerLayout<X, Y>
impl<X: Tick, Y: Tick> From<AxisMarker> for InnerLayout<X, Y>
Source§fn from(inner: AxisMarker) -> Self
fn from(inner: AxisMarker) -> Self
Converts to this type from the input type.
Source§impl<X: Tick, Y: Tick> From<InsetLegend> for InnerLayout<X, Y>
impl<X: Tick, Y: Tick> From<InsetLegend> for InnerLayout<X, Y>
Source§fn from(inner: InsetLegend) -> Self
fn from(inner: InsetLegend) -> Self
Converts to this type from the input type.
Source§impl<X: Tick, Y: Tick> From<XGuideLine> for InnerLayout<X, Y>
impl<X: Tick, Y: Tick> From<XGuideLine> for InnerLayout<X, Y>
Source§fn from(inner: XGuideLine) -> Self
fn from(inner: XGuideLine) -> Self
Converts to this type from the input type.
Source§impl<X: Tick, Y: Tick> From<YGuideLine> for InnerLayout<X, Y>
impl<X: Tick, Y: Tick> From<YGuideLine> for InnerLayout<X, Y>
Source§fn from(inner: YGuideLine) -> Self
fn from(inner: YGuideLine) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<X, Y> Freeze for InnerLayout<X, Y>
impl<X, Y> RefUnwindSafe for InnerLayout<X, Y>
impl<X, Y> Send for InnerLayout<X, Y>
impl<X, Y> Sync for InnerLayout<X, Y>
impl<X, Y> Unpin for InnerLayout<X, Y>
impl<X, Y> UnwindSafe for InnerLayout<X, Y>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_element_maybe_signal(self) -> ElementMaybeSignal<T>
Source§impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
fn into_element_maybe_signal_type(self) -> ElementMaybeSignalType<T>
Source§impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_elements_maybe_signal(self) -> ElementsMaybeSignal<T>
Source§impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
fn into_elements_maybe_signal_type(self) -> ElementsMaybeSignalType<T>
Source§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.