pub struct VitcParseResult {
pub timecode: Option<Timecode>,
pub crc_ok: bool,
pub raw_nibbles: Vec<u8>,
}Expand description
Result of a VITC line parse attempt.
Fields§
§timecode: Option<Timecode>Parsed timecode, if successful.
crc_ok: boolWhether the CRC matched.
raw_nibbles: Vec<u8>Raw nibbles extracted from the line.
Trait Implementations§
Source§impl Clone for VitcParseResult
impl Clone for VitcParseResult
Source§fn clone(&self) -> VitcParseResult
fn clone(&self) -> VitcParseResult
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 VitcParseResult
impl Debug for VitcParseResult
Source§impl PartialEq for VitcParseResult
impl PartialEq for VitcParseResult
impl Eq for VitcParseResult
impl StructuralPartialEq for VitcParseResult
Auto Trait Implementations§
impl Freeze for VitcParseResult
impl RefUnwindSafe for VitcParseResult
impl Send for VitcParseResult
impl Sync for VitcParseResult
impl Unpin for VitcParseResult
impl UnsafeUnpin for VitcParseResult
impl UnwindSafe for VitcParseResult
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