pub struct LottieJson {
pub v: Option<String>,
pub ip: f32,
pub op: f32,
pub fr: f32,
pub w: u32,
pub h: u32,
pub layers: Vec<Layer>,
pub assets: Vec<Asset>,
}Fields§
§v: Option<String>§ip: f32§op: f32§fr: f32§w: u32§h: u32§layers: Vec<Layer>§assets: Vec<Asset>Trait Implementations§
Source§impl Clone for LottieJson
impl Clone for LottieJson
Source§fn clone(&self) -> LottieJson
fn clone(&self) -> LottieJson
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 Debug for LottieJson
impl Debug for LottieJson
Source§impl<'de> Deserialize<'de> for LottieJson
impl<'de> Deserialize<'de> for LottieJson
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
Auto Trait Implementations§
impl Freeze for LottieJson
impl RefUnwindSafe for LottieJson
impl Send for LottieJson
impl Sync for LottieJson
impl Unpin for LottieJson
impl UnwindSafe for LottieJson
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