pub struct AlignmentSegment {
pub text: String,
pub start: f64,
pub end: f64,
}Expand description
A single alignment segment.
Fields§
§text: StringAligned text.
start: f64Start time in seconds.
end: f64End time in seconds.
Trait Implementations§
Source§impl Clone for AlignmentSegment
impl Clone for AlignmentSegment
Source§fn clone(&self) -> AlignmentSegment
fn clone(&self) -> AlignmentSegment
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 AlignmentSegment
impl Debug for AlignmentSegment
Source§impl<'de> Deserialize<'de> for AlignmentSegment
impl<'de> Deserialize<'de> for AlignmentSegment
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 AlignmentSegment
impl RefUnwindSafe for AlignmentSegment
impl Send for AlignmentSegment
impl Sync for AlignmentSegment
impl Unpin for AlignmentSegment
impl UnsafeUnpin for AlignmentSegment
impl UnwindSafe for AlignmentSegment
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