[][src]Enum nannou::ui::prelude::widget::envelope_editor::Event

pub enum Event<E> where
    E: EnvelopePoint
{ AddPoint { i: usize, point: E, }, RemovePoint { i: usize, }, MovePoint { i: usize, x: <E as EnvelopePoint>::X, y: <E as EnvelopePoint>::Y, }, }

The kinds of events that may be yielded by the EnvelopeEditor.

Variants

AddPoint

Insert a new point.

Fields of AddPoint

i: usize

The index at which the point should be inserted.

point: E

The new point.

RemovePoint

Remove a point.

Fields of RemovePoint

i: usize

The index of the point that should be removed.

MovePoint

Move a point.

Fields of MovePoint

i: usize

The index of the point that should be moved.

x: <E as EnvelopePoint>::X

The point's new x value.

y: <E as EnvelopePoint>::Y

The point's new y value.

Methods

impl<E> Event<E> where
    E: EnvelopePoint
[src]

pub fn update(self, envelope: &mut Vec<E>)[src]

Update the given envelope in accordance with the Event.

Trait Implementations

impl<E> Clone for Event<E> where
    E: Clone + EnvelopePoint,
    <E as EnvelopePoint>::X: Clone,
    <E as EnvelopePoint>::Y: Clone
[src]

impl<E> Copy for Event<E> where
    E: Copy + EnvelopePoint,
    <E as EnvelopePoint>::X: Copy,
    <E as EnvelopePoint>::Y: Copy
[src]

impl<E> Debug for Event<E> where
    E: Debug + EnvelopePoint,
    <E as EnvelopePoint>::X: Debug,
    <E as EnvelopePoint>::Y: Debug
[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for Event<E> where
    E: RefUnwindSafe,
    <E as EnvelopePoint>::X: RefUnwindSafe,
    <E as EnvelopePoint>::Y: RefUnwindSafe

impl<E> Send for Event<E> where
    E: Send,
    <E as EnvelopePoint>::X: Send,
    <E as EnvelopePoint>::Y: Send

impl<E> Sync for Event<E> where
    E: Sync,
    <E as EnvelopePoint>::X: Sync,
    <E as EnvelopePoint>::Y: Sync

impl<E> Unpin for Event<E> where
    E: Unpin,
    <E as EnvelopePoint>::X: Unpin,
    <E as EnvelopePoint>::Y: Unpin

impl<E> UnwindSafe for Event<E> where
    E: UnwindSafe,
    <E as EnvelopePoint>::X: UnwindSafe,
    <E as EnvelopePoint>::Y: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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