pub struct TimelineInfo {
pub id: String,
pub title: String,
pub duration: f64,
pub error: Option<String>,
}Expand description
Metadata for one timeline exposed by a plugin.
Fields§
§id: String§title: String§duration: f64§error: Option<String>A resolve-time error for this timeline, if its tree failed to resolve
(e.g. a media probe failure or a timeless root). Mirrors the
last_error display the server already surfaces for plugin load
failures; None when the timeline resolved cleanly.
Trait Implementations§
Source§impl Clone for TimelineInfo
impl Clone for TimelineInfo
Source§fn clone(&self) -> TimelineInfo
fn clone(&self) -> TimelineInfo
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 moreSource§impl Debug for TimelineInfo
impl Debug for TimelineInfo
Source§impl PartialEq for TimelineInfo
impl PartialEq for TimelineInfo
impl StructuralPartialEq for TimelineInfo
Auto Trait Implementations§
impl Freeze for TimelineInfo
impl RefUnwindSafe for TimelineInfo
impl Send for TimelineInfo
impl Sync for TimelineInfo
impl Unpin for TimelineInfo
impl UnsafeUnpin for TimelineInfo
impl UnwindSafe for TimelineInfo
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DynEq for T
impl<T> DynEq for T
fn as_any(&self) -> &(dyn Any + 'static)
fn dyn_eq(&self, other: &(dyn Any + 'static)) -> bool
Source§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
Concrete type name behind this trait object, suitable for
diagnostics (e.g.
tellur_renderer::shadow::DropShadow). Backed
by std::any::type_name specialized to the impl’s Self, so
callers can introspect a &dyn Component without a downcast.