pub enum AlignmentError {
IncompatibleDuration {
segment_ms: u64,
video_ms: u64,
},
EmptyTranscript,
InvalidTimestamp {
start_ms: u64,
end_ms: u64,
},
}Expand description
Errors that can occur during alignment operations.
Variants§
Trait Implementations§
Source§impl Clone for AlignmentError
impl Clone for AlignmentError
Source§fn clone(&self) -> AlignmentError
fn clone(&self) -> AlignmentError
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 AlignmentError
impl Debug for AlignmentError
Source§impl Display for AlignmentError
impl Display for AlignmentError
Source§impl Error for AlignmentError
impl Error for AlignmentError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<AlignmentError> for CaptionGenError
impl From<AlignmentError> for CaptionGenError
Source§fn from(source: AlignmentError) -> Self
fn from(source: AlignmentError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AlignmentError
impl PartialEq for AlignmentError
impl StructuralPartialEq for AlignmentError
Auto Trait Implementations§
impl Freeze for AlignmentError
impl RefUnwindSafe for AlignmentError
impl Send for AlignmentError
impl Sync for AlignmentError
impl Unpin for AlignmentError
impl UnsafeUnpin for AlignmentError
impl UnwindSafe for AlignmentError
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