pub struct RowRef<'values>(pub u64, pub Box<[(&'values ChannelStreamDescriptor, ValueRef<'values>)]>);Expand description
Channel information and data referenced from a SampleTable for a given timestamp.
Tuple Fields§
§0: u64The timestamp of the row.
1: Box<[(&'values ChannelStreamDescriptor, ValueRef<'values>)]>The channel and value for each column in the row.
Trait Implementations§
Source§impl<'values> PartialEq for RowRef<'values>
impl<'values> PartialEq for RowRef<'values>
impl<'values> StructuralPartialEq for RowRef<'values>
Auto Trait Implementations§
impl<'values> Freeze for RowRef<'values>
impl<'values> RefUnwindSafe for RowRef<'values>
impl<'values> Send for RowRef<'values>
impl<'values> Sync for RowRef<'values>
impl<'values> Unpin for RowRef<'values>
impl<'values> UnsafeUnpin for RowRef<'values>
impl<'values> UnwindSafe for RowRef<'values>
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