pub struct ParsedAnimatedStyle {Show 21 fields
pub font_size: Option<f64>,
pub scale_x: Option<f64>,
pub scale_y: Option<f64>,
pub spacing: Option<f64>,
pub rotation_x: Option<f64>,
pub rotation_y: Option<f64>,
pub rotation_z: Option<f64>,
pub shear_x: Option<f64>,
pub shear_y: Option<f64>,
pub primary_colour: Option<u32>,
pub secondary_colour: Option<u32>,
pub outline_colour: Option<u32>,
pub back_colour: Option<u32>,
pub border: Option<f64>,
pub border_x: Option<f64>,
pub border_y: Option<f64>,
pub shadow: Option<f64>,
pub shadow_x: Option<f64>,
pub shadow_y: Option<f64>,
pub blur: Option<f64>,
pub be: Option<f64>,
}Fields§
§font_size: Option<f64>§scale_x: Option<f64>§scale_y: Option<f64>§spacing: Option<f64>§rotation_x: Option<f64>§rotation_y: Option<f64>§rotation_z: Option<f64>§shear_x: Option<f64>§shear_y: Option<f64>§primary_colour: Option<u32>§secondary_colour: Option<u32>§outline_colour: Option<u32>§back_colour: Option<u32>§border: Option<f64>§border_x: Option<f64>§border_y: Option<f64>§shadow: Option<f64>§shadow_x: Option<f64>§shadow_y: Option<f64>§blur: Option<f64>§be: Option<f64>Trait Implementations§
Source§impl Clone for ParsedAnimatedStyle
impl Clone for ParsedAnimatedStyle
Source§fn clone(&self) -> ParsedAnimatedStyle
fn clone(&self) -> ParsedAnimatedStyle
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 ParsedAnimatedStyle
impl Debug for ParsedAnimatedStyle
Source§impl Default for ParsedAnimatedStyle
impl Default for ParsedAnimatedStyle
Source§fn default() -> ParsedAnimatedStyle
fn default() -> ParsedAnimatedStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedAnimatedStyle
impl PartialEq for ParsedAnimatedStyle
Source§fn eq(&self, other: &ParsedAnimatedStyle) -> bool
fn eq(&self, other: &ParsedAnimatedStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParsedAnimatedStyle
Auto Trait Implementations§
impl Freeze for ParsedAnimatedStyle
impl RefUnwindSafe for ParsedAnimatedStyle
impl Send for ParsedAnimatedStyle
impl Sync for ParsedAnimatedStyle
impl Unpin for ParsedAnimatedStyle
impl UnsafeUnpin for ParsedAnimatedStyle
impl UnwindSafe for ParsedAnimatedStyle
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