#[non_exhaustive]pub enum AnimationChild {
Set(SetElement),
}Expand description
Animation children (in body, div, p, span, region).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Set(SetElement)
A <set> element.
Trait Implementations§
Source§impl Clone for AnimationChild
impl Clone for AnimationChild
Source§fn clone(&self) -> AnimationChild
fn clone(&self) -> AnimationChild
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnimationChild
impl Debug for AnimationChild
Source§impl PartialEq for AnimationChild
impl PartialEq for AnimationChild
impl StructuralPartialEq for AnimationChild
Auto Trait Implementations§
impl Freeze for AnimationChild
impl RefUnwindSafe for AnimationChild
impl Send for AnimationChild
impl Sync for AnimationChild
impl Unpin for AnimationChild
impl UnsafeUnpin for AnimationChild
impl UnwindSafe for AnimationChild
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