#[repr(C)]pub struct Keyframes {
pub name: AzString,
pub stops: KeyframeStopVec,
}Expand description
A named @keyframes block: @keyframes flyOutRight { from {..} to {..} }.
Fields§
§name: AzString§stops: KeyframeStopVecSorted by permille ascending at parse time.
Trait Implementations§
impl Eq for Keyframes
Source§impl Extend<Keyframes> for KeyframesVec
impl Extend<Keyframes> for KeyframesVec
Source§fn extend<T: IntoIterator<Item = Keyframes>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = Keyframes>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: T)
fn extend_one(&mut self, item: T)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl FromIterator<Keyframes> for KeyframesVec
impl FromIterator<Keyframes> for KeyframesVec
impl StructuralPartialEq for Keyframes
Auto Trait Implementations§
impl Freeze for Keyframes
impl RefUnwindSafe for Keyframes
impl Send for Keyframes
impl Sync for Keyframes
impl Unpin for Keyframes
impl UnsafeUnpin for Keyframes
impl UnwindSafe for Keyframes
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