pub enum TcRelation {
Before,
Equal,
After,
}Expand description
The result of comparing two timecodes.
Variants§
Before
The first timecode is earlier.
Equal
The timecodes are identical.
After
The first timecode is later.
Trait Implementations§
Source§impl Clone for TcRelation
impl Clone for TcRelation
Source§fn clone(&self) -> TcRelation
fn clone(&self) -> TcRelation
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 TcRelation
impl Debug for TcRelation
Source§impl PartialEq for TcRelation
impl PartialEq for TcRelation
impl Copy for TcRelation
impl Eq for TcRelation
impl StructuralPartialEq for TcRelation
Auto Trait Implementations§
impl Freeze for TcRelation
impl RefUnwindSafe for TcRelation
impl Send for TcRelation
impl Sync for TcRelation
impl Unpin for TcRelation
impl UnsafeUnpin for TcRelation
impl UnwindSafe for TcRelation
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