[][src]Struct nannou::event::Update

pub struct Update {
    pub since_last: Duration,
    pub since_start: Duration,
}

Update event, emitted on each pass of an application loop.

Fields

since_last: Duration

The duration since the last update was emitted.

The first update's delta will be the time since the given model function returned.

since_start: Duration

The duration since the start of the app loop.

Specifically, this is the duration of time since the given model function returned.

Trait Implementations

impl Eq for Update[src]

impl Clone for Update[src]

impl PartialEq<Update> for Update[src]

impl From<Update> for Event[src]

impl Copy for Update[src]

impl Hash for Update[src]

impl Debug for Update[src]

Auto Trait Implementations

impl Send for Update

impl Unpin for Update

impl Sync for Update

impl UnwindSafe for Update

impl RefUnwindSafe for Update

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

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

impl<T> NodeId for T where
    T: 'static + Copy + Clone + PartialEq<T> + Eq + Hash + Send
[src]

impl<T> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> Content for T[src]

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

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

impl<T> SetParameter for T

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