Skip to main content

State

Struct State 

Source
pub struct State<Id>
where Id: Clone,
{ /* private fields */ }
Expand description

Local state of the Chart.

Implementations§

Source§

impl<Id> State<Id>
where Id: Clone,

Source

pub fn get_cursor_position(&self) -> Option<Point>

Source

pub fn get_coords(&self) -> Option<Point>

Source

pub fn get_offset(&self) -> Option<Point>

Examples found in repository?
examples/items_drag.rs (line 192)
175    pub fn view(&self) -> Element<'_, Message> {
176        let palette = self.theme().palette();
177        container(
178            Chart::new()
179                .width(Length::Fill)
180                .height(Length::Fill)
181                .x_range(-0.5..=3.5)
182                .y_range(-0.5..=1.5)
183                .push_series(line_series(self.handles.iter()).color(palette.primary))
184                .push_series(
185                    point_series(self.handles.iter())
186                        .color(palette.danger)
187                        .style_for_each(|_index, handle| handle.style.clone())
188                        .with_id(ItemId::PointList),
189                )
190                .on_press(|state| {
191                    let id = state.items().and_then(|l| l.first().map(|i| i.1));
192                    Message::MouseDown(id, state.get_offset())
193                })
194                .on_move(|state| {
195                    let id = state.items().and_then(|l| l.first().map(|i| i.1));
196                    Message::OnMove(id, state.get_offset())
197                })
198                .on_release(|state| Message::MouseUp(state.get_offset())),
199        )
200        .into()
201    }
More examples
Hide additional examples
examples/scroll.rs (line 164)
141    pub fn view(&self) -> Element<'_, Message> {
142        let palette = self.theme().palette();
143
144        let top = bound("Top").center_x(Length::Fill);
145        let bottom = bound("Bottom").center_x(Length::Fill);
146        let left = bound("Left").center_y(Length::Fill);
147        let right = bound("Right").center_y(Length::Fill);
148
149        let chart = Chart::<_, (), _>::new()
150            .width(Length::Fill)
151            .height(Length::Fill)
152            .x_range(self.x_range.clone())
153            .x_labels(Labels::default().format(&|v| format!("{v:.2}")))
154            .y_labels(Labels::default().format(&|v| format!("{v:.5}")))
155            .y_range(-2.0..=2.0)
156            .push_series(line_series(self.data.iter().copied()).color(palette.primary)) // .push_series(
157            .push_series(line_series(&self.data_1).color(palette.success))
158            .push_series(
159                point_series(self.data.iter().copied().map(|(x, y)| (x, y * 1.5)))
160                    .x(&|item| item.0)
161                    .y(&|item| item.1)
162                    .color(palette.danger),
163            )
164            .on_press(|state| Message::MouseDown(state.get_offset()))
165            .on_release(|state| Message::MouseUp(state.get_offset()))
166            .on_move(|state| Message::OnMove(state.get_offset()));
167
168        column![top, row![left, chart, right], bottom].into()
169    }
Source

pub fn x_range(&self) -> Option<RangeInclusive<f32>>

Source

pub fn scroll_delta(&self) -> Option<ScrollDelta>

Source

pub fn items(&self) -> Option<&Vec<(Id, usize)>>

Examples found in repository?
examples/items.rs (line 115)
95    pub fn view(&self) -> Element<'_, Message> {
96        let palette = self.theme().palette();
97        container(
98            Chart::new()
99                .width(Length::Fill)
100                .height(Length::Fill)
101                .x_range(-0.5..=3.5)
102                .y_range(-0.5..=1.5)
103                .push_series(line_series(&self.data).color(palette.text))
104                .push_series(
105                    point_series(self.data.iter())
106                        .color(palette.danger)
107                        .style_for_each(|_index, item| point::Style {
108                            color: Some(item.color),
109                            border_color: Some(item.border_color),
110                            border: item.border,
111                            ..Default::default()
112                        })
113                        .with_id(ItemId::PointList),
114                )
115                .on_move(|state| Message::OnMove(state.items().cloned())),
116        )
117        .into()
118    }
More examples
Hide additional examples
examples/items_drag.rs (line 191)
175    pub fn view(&self) -> Element<'_, Message> {
176        let palette = self.theme().palette();
177        container(
178            Chart::new()
179                .width(Length::Fill)
180                .height(Length::Fill)
181                .x_range(-0.5..=3.5)
182                .y_range(-0.5..=1.5)
183                .push_series(line_series(self.handles.iter()).color(palette.primary))
184                .push_series(
185                    point_series(self.handles.iter())
186                        .color(palette.danger)
187                        .style_for_each(|_index, handle| handle.style.clone())
188                        .with_id(ItemId::PointList),
189                )
190                .on_press(|state| {
191                    let id = state.items().and_then(|l| l.first().map(|i| i.1));
192                    Message::MouseDown(id, state.get_offset())
193                })
194                .on_move(|state| {
195                    let id = state.items().and_then(|l| l.first().map(|i| i.1));
196                    Message::OnMove(id, state.get_offset())
197                })
198                .on_release(|state| Message::MouseUp(state.get_offset())),
199        )
200        .into()
201    }

Trait Implementations§

Source§

impl<Id> Default for State<Id>
where Id: Clone,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<Id> Freeze for State<Id>
where Option<Vec<(Id, usize)>>: Freeze,

§

impl<Id> RefUnwindSafe for State<Id>
where Option<Vec<(Id, usize)>>: RefUnwindSafe,

§

impl<Id> Send for State<Id>
where Option<Vec<(Id, usize)>>: Send,

§

impl<Id> Sync for State<Id>
where Option<Vec<(Id, usize)>>: Sync,

§

impl<Id> Unpin for State<Id>
where Option<Vec<(Id, usize)>>: Unpin,

§

impl<Id> UnsafeUnpin for State<Id>
where Option<Vec<(Id, usize)>>: UnsafeUnpin,

§

impl<Id> UnwindSafe for State<Id>
where Option<Vec<(Id, usize)>>: UnwindSafe,

Blanket Implementations§

Source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,

Source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<T>,

Convert the source color to the destination color using the specified method.
Source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T, C> ArraysFrom<C> for T
where C: IntoArrays<T>,

Source§

fn arrays_from(colors: C) -> T

Cast a collection of colors into a collection of arrays.
Source§

impl<T, C> ArraysInto<C> for T
where C: FromArrays<T>,

Source§

fn arrays_into(self) -> C

Cast this collection of arrays into a collection of colors.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for U
where T: FromCam16Unclamped<WpParam, U>,

Source§

type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
Source§

fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Source§

impl<T, C> ComponentsFrom<C> for T
where C: IntoComponents<T>,

Source§

fn components_from(colors: C) -> T

Cast a collection of colors into a collection of color components.
Source§

impl<T, C> ComponentsInto<C> for T

Source§

fn components_into(self) -> C

Cast this collection of color components into a collection of colors. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

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>

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)

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)

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> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromAngle<T> for T

Source§

fn from_angle(angle: T) -> T

Performs a conversion from angle.
Source§

impl<T, U> FromStimulus<U> for T
where U: IntoStimulus<T>,

Source§

fn from_stimulus(other: U) -> T

Converts other into Self, while performing the appropriate scaling, rounding and clamping.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> IntoAngle<U> for T
where U: FromAngle<T>,

Source§

fn into_angle(self) -> U

Performs a conversion into T.
Source§

impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for U
where T: Cam16FromUnclamped<WpParam, U>,

Source§

type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
Source§

fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Source§

impl<T, U> IntoColor<U> for T
where U: FromColor<T>,

Source§

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 T
where U: FromColorUnclamped<T>,

Source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> IntoStimulus<T> for T

Source§

fn into_stimulus(self) -> T

Converts self into T, while performing the appropriate scaling, rounding and clamping.
Source§

impl<T> MaybeSend for T
where T: Send,

Source§

impl<T> MaybeSync for T
where T: Sync,

Source§

impl<T> NoneValue for T
where T: Default,

Source§

type NoneType = T

Source§

fn null_value() -> T

The none-equivalent value.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, C> TryComponentsInto<C> for T
where C: TryFromComponents<T>,

Source§

type Error = <C as TryFromComponents<T>>::Error

The error for when try_into_colors fails to cast.
Source§

fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>

Try to cast this collection of color components into a collection of colors. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

Source§

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
Source§

impl<C, U> UintsFrom<C> for U
where C: IntoUints<U>,

Source§

fn uints_from(colors: C) -> U

Cast a collection of colors into a collection of unsigned integers.
Source§

impl<C, U> UintsInto<C> for U
where C: FromUints<U>,

Source§

fn uints_into(self) -> C

Cast this collection of unsigned integers into a collection of colors.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more