Struct mlt_sys::mlt_animation_item_s[][src]

#[repr(C)]
pub struct mlt_animation_item_s { pub is_key: c_int, pub frame: c_int, pub property: mlt_property, pub keyframe_type: mlt_keyframe_type, }

An animation item that represents a keyframe-property combination.

Fields

< a boolean of whether this is a key frame or an interpolated item

< the frame number for this instance of the property

< the property for this point in time

< the method of interpolation for this key frame

Trait Implementations

impl Debug for mlt_animation_item_s
[src]

Formats the value using the given formatter. Read more

impl Copy for mlt_animation_item_s
[src]

impl Clone for mlt_animation_item_s
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations