pub struct SectionMarker {
pub timestamp_ms: u64,
pub section_type: SectionType,
pub label: Option<String>,
}Expand description
Section marker with timestamp and label
Fields§
§timestamp_ms: u64Timestamp in milliseconds
section_type: SectionTypeSection type
label: Option<String>Optional custom label (e.g., “Verse 2”, “Guitar Solo”)
Trait Implementations§
Source§impl Clone for SectionMarker
impl Clone for SectionMarker
Source§fn clone(&self) -> SectionMarker
fn clone(&self) -> SectionMarker
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 SectionMarker
impl Debug for SectionMarker
Source§impl<'de> Deserialize<'de> for SectionMarker
impl<'de> Deserialize<'de> for SectionMarker
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SectionMarker
impl RefUnwindSafe for SectionMarker
impl Send for SectionMarker
impl Sync for SectionMarker
impl Unpin for SectionMarker
impl UnwindSafe for SectionMarker
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