pub struct SceneVideoTrack {
pub placements: Vec<ScenePlacement>,
}Expand description
One video track: an ordered list of clip placements along the timeline. The
track’s index in Scene::video_tracks is its compositing order (0 = base).
Fields§
§placements: Vec<ScenePlacement>Placements in timeline order.
Trait Implementations§
Source§impl Clone for SceneVideoTrack
impl Clone for SceneVideoTrack
Source§fn clone(&self) -> SceneVideoTrack
fn clone(&self) -> SceneVideoTrack
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 moreAuto Trait Implementations§
impl Freeze for SceneVideoTrack
impl RefUnwindSafe for SceneVideoTrack
impl Send for SceneVideoTrack
impl Sync for SceneVideoTrack
impl Unpin for SceneVideoTrack
impl UnsafeUnpin for SceneVideoTrack
impl UnwindSafe for SceneVideoTrack
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