pub enum DragPayload {
Asset(u64),
Path(String),
Sequence(u64),
Template(String),
Effect(EffectKind),
Transition(TransitionKind),
}Expand description
Drag-and-drop payload from the library / recent / planner panels to the timeline (egui dnd API).
Variants§
Asset(u64)
A library asset id.
Path(String)
A file path (recent panel, linked folders) — the timeline reports it back as a dropped file.
Sequence(u64)
A nested timeline (Project.sequences) id.
Template(String)
A saved template (Settings.templates) by name.
Effect(EffectKind)
An effect from the effects panel (dropped on a clip or the node canvas).
Transition(TransitionKind)
A transition from the transitions panel (dropped on a cut or the node canvas).
Trait Implementations§
Source§impl Clone for DragPayload
impl Clone for DragPayload
Source§fn clone(&self) -> DragPayload
fn clone(&self) -> DragPayload
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 moreAuto Trait Implementations§
impl Freeze for DragPayload
impl RefUnwindSafe for DragPayload
impl Send for DragPayload
impl Sync for DragPayload
impl Unpin for DragPayload
impl UnwindSafe for DragPayload
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more