[][src]Struct kiss3d_conrod::widget::range_slider::Event

pub struct Event<T> { /* fields omitted */ }

The Event type produced by the RangeSlider.

This can be used as an Iterator that only yields changed Edges.

Trait Implementations

impl<T> Iterator for Event<T>[src]

type Item = (Edge, T)

The type of the elements being iterated over.

impl<T: Clone> Clone for Event<T>[src]

Auto Trait Implementations

impl<T> Send for Event<T> where
    T: Send

impl<T> Sync for Event<T> where
    T: Sync

impl<T> Unpin for Event<T> where
    T: Unpin

impl<T> UnwindSafe for Event<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Event<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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