pub struct EvolvedPath {
pub stroke_dasharray: String,
pub stroke_dashoffset: f64,
}Expand description
Calculated SVG stroke properties for line drawing animation.
Fields§
§stroke_dasharray: Stringstroke-dasharray CSS property value.
stroke_dashoffset: f64stroke-dashoffset CSS property value.
Trait Implementations§
Source§impl Clone for EvolvedPath
impl Clone for EvolvedPath
Source§fn clone(&self) -> EvolvedPath
fn clone(&self) -> EvolvedPath
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 EvolvedPath
impl Debug for EvolvedPath
Source§impl<'de> Deserialize<'de> for EvolvedPath
impl<'de> Deserialize<'de> for EvolvedPath
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 PartialEq for EvolvedPath
impl PartialEq for EvolvedPath
Source§impl Serialize for EvolvedPath
impl Serialize for EvolvedPath
impl StructuralPartialEq for EvolvedPath
Auto Trait Implementations§
impl Freeze for EvolvedPath
impl RefUnwindSafe for EvolvedPath
impl Send for EvolvedPath
impl Sync for EvolvedPath
impl Unpin for EvolvedPath
impl UnsafeUnpin for EvolvedPath
impl UnwindSafe for EvolvedPath
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