pub enum TimelineElement {
Timeline {
id: String,
name: String,
},
Track {
id: String,
name: String,
kind: String,
parent_id: Option<String>,
},
Clip {
id: String,
name: String,
parent_id: Option<String>,
},
Transition {
id: String,
name: String,
parent_id: Option<String>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TimelineElement
impl Clone for TimelineElement
Source§fn clone(&self) -> TimelineElement
fn clone(&self) -> TimelineElement
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 TimelineElement
impl Debug for TimelineElement
Source§impl PartialEq for TimelineElement
impl PartialEq for TimelineElement
impl StructuralPartialEq for TimelineElement
Auto Trait Implementations§
impl Freeze for TimelineElement
impl RefUnwindSafe for TimelineElement
impl Send for TimelineElement
impl Sync for TimelineElement
impl Unpin for TimelineElement
impl UnsafeUnpin for TimelineElement
impl UnwindSafe for TimelineElement
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