pub struct AnimationStyle {
pub id: AnimationStyleId,
pub display_name: String,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
}
Expand description
Represents an animation style.
Fields§
§id: AnimationStyleId
The id of the animation style.
display_name: String
The animation style’s name.
created_at: DateTime<Utc>
When the animation style was created.
updated_at: Option<DateTime<Utc>>
When the animation style was last updated.
Trait Implementations§
Source§impl Clone for AnimationStyle
impl Clone for AnimationStyle
Source§fn clone(&self) -> AnimationStyle
fn clone(&self) -> AnimationStyle
Returns a copy 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 AnimationStyle
impl Debug for AnimationStyle
Source§impl<'de> Deserialize<'de> for AnimationStyle
impl<'de> Deserialize<'de> for AnimationStyle
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 AnimationStyle
impl RefUnwindSafe for AnimationStyle
impl Send for AnimationStyle
impl Sync for AnimationStyle
impl Unpin for AnimationStyle
impl UnwindSafe for AnimationStyle
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