Struct webrender_api::PropertyValue
source · pub struct PropertyValue<T> {
pub key: PropertyBindingKey<T>,
pub value: T,
}
Expand description
The current value of an animated property. This is supplied by the calling code.
Fields§
§key: PropertyBindingKey<T>
§value: T
Trait Implementations§
source§impl<T: Clone> Clone for PropertyValue<T>
impl<T: Clone> Clone for PropertyValue<T>
source§fn clone(&self) -> PropertyValue<T>
fn clone(&self) -> PropertyValue<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for PropertyValue<T>
impl<T: Debug> Debug for PropertyValue<T>
source§impl<'de, T> Deserialize<'de> for PropertyValue<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for PropertyValue<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T: PartialEq> PartialEq for PropertyValue<T>
impl<T: PartialEq> PartialEq for PropertyValue<T>
source§fn eq(&self, other: &PropertyValue<T>) -> bool
fn eq(&self, other: &PropertyValue<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T> Serialize for PropertyValue<T>where
T: Serialize,
impl<T> Serialize for PropertyValue<T>where
T: Serialize,
impl<T: Copy> Copy for PropertyValue<T>
impl<T> StructuralPartialEq for PropertyValue<T>
Auto Trait Implementations§
impl<T> Freeze for PropertyValue<T>where
T: Freeze,
impl<T> RefUnwindSafe for PropertyValue<T>where
T: RefUnwindSafe,
impl<T> Send for PropertyValue<T>where
T: Send,
impl<T> Sync for PropertyValue<T>where
T: Sync,
impl<T> Unpin for PropertyValue<T>where
T: Unpin,
impl<T> UnwindSafe for PropertyValue<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more