pub struct HistoryEntry {
pub id: String,
pub infill: bool,
pub continue_at: Option<f64>,
pub infill_start_s: Option<f64>,
pub infill_end_s: Option<f64>,
pub infill_lyrics: String,
}Expand description
One entry in a clip’s history or concat_history, mirroring the API’s
per-segment lineage record. Ids are stored verbatim (any m_ prefix is left
for the resolver to strip).
Fields§
§id: String§infill: bool§continue_at: Option<f64>§infill_start_s: Option<f64>§infill_end_s: Option<f64>§infill_lyrics: StringTrait Implementations§
Source§impl Clone for HistoryEntry
impl Clone for HistoryEntry
Source§fn clone(&self) -> HistoryEntry
fn clone(&self) -> HistoryEntry
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 HistoryEntry
impl Debug for HistoryEntry
Source§impl Default for HistoryEntry
impl Default for HistoryEntry
Source§fn default() -> HistoryEntry
fn default() -> HistoryEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for HistoryEntry
impl PartialEq for HistoryEntry
Source§fn eq(&self, other: &HistoryEntry) -> bool
fn eq(&self, other: &HistoryEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoryEntry
Auto Trait Implementations§
impl Freeze for HistoryEntry
impl RefUnwindSafe for HistoryEntry
impl Send for HistoryEntry
impl Sync for HistoryEntry
impl Unpin for HistoryEntry
impl UnsafeUnpin for HistoryEntry
impl UnwindSafe for HistoryEntry
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