pub struct TransitionProperty<T>(pub T)
where
T: Clone + Debug + Display + PartialEq + UnitDataType<Self>;Expand description
Tuple Fields§
§0: TImplementations§
Trait Implementations§
Source§impl<T> Clone for TransitionProperty<T>
impl<T> Clone for TransitionProperty<T>
Source§fn clone(&self) -> TransitionProperty<T>
fn clone(&self) -> TransitionProperty<T>
Returns a duplicate 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 CustomIdentStorage for TransitionProperty<TransitionPropertyValue>
impl CustomIdentStorage for TransitionProperty<TransitionPropertyValue>
fn custom_ident(value: &str) -> Selfwhere
Self: Sized,
Source§impl<T> Debug for TransitionProperty<T>
impl<T> Debug for TransitionProperty<T>
Source§impl<T> Display for TransitionProperty<T>
impl<T> Display for TransitionProperty<T>
Source§impl<T> From<T> for TransitionProperty<T>
impl<T> From<T> for TransitionProperty<T>
Source§impl<T> From<T> for TransitionProperty<TransitionPropertyValue>where
T: Into<CustomIdent>,
impl<T> From<T> for TransitionProperty<TransitionPropertyValue>where
T: Into<CustomIdent>,
Source§impl<T> PartialEq for TransitionProperty<T>
impl<T> PartialEq for TransitionProperty<T>
Source§impl<T> Property for TransitionProperty<T>
impl<T> Property for TransitionProperty<T>
Source§fn declaration(&self) -> String
fn declaration(&self) -> String
Returns the stringified property name with its value
as a CSS declaration to be used within a declaration block. Read more
Source§impl<T> PropertyName for TransitionProperty<T>
impl<T> PropertyName for TransitionProperty<T>
fn property_name<'a>(&self) -> &'a str
impl<T> StructuralPartialEq for TransitionProperty<T>
impl UnitDataType<TransitionProperty<Nothing>> for Nothing
impl UnitDataType<TransitionProperty<TransitionPropertyValue>> for TransitionPropertyValue
impl<T> UnitDataType<TransitionProperty<Var<T>>> for Var<T>
impl<T> UnitDataTypeContainer<T> for TransitionProperty<T>
Auto Trait Implementations§
impl<T> Freeze for TransitionProperty<T>where
T: Freeze,
impl<T> RefUnwindSafe for TransitionProperty<T>where
T: RefUnwindSafe,
impl<T> Send for TransitionProperty<T>where
T: Send,
impl<T> Sync for TransitionProperty<T>where
T: Sync,
impl<T> Unpin for TransitionProperty<T>where
T: Unpin,
impl<T> UnwindSafe for TransitionProperty<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