Struct webrender_api::PropertyValue[][src]

pub struct PropertyValue<T> {
    pub key: PropertyBindingKey<T>,
    pub value: T,
}

The current value of an animated property. This is supplied by the calling code.

Fields

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for PropertyValue<T>
[src]

impl<T: Debug> Debug for PropertyValue<T>
[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for PropertyValue<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

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

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