pub struct ChannelMetadata {}
Expand description
ChannelMetadata is a doubly linked list of blocks in the file This only contains info about a channel, actual data is stored somewhere else on the file.
Fields§
§prev_addr: u32
§next_addr: u32
§data_addr: u32
§data_count: u32
§datatype: Datatype
§sample_rate: u16
Sample Rate in Hz
offset: u16
§mul: u16
§scale: u16
§dec_places: i16
§name: String
§short_name: String
§unit: String
Trait Implementations§
Source§impl Clone for ChannelMetadata
impl Clone for ChannelMetadata
Source§fn clone(&self) -> ChannelMetadata
fn clone(&self) -> ChannelMetadata
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 ChannelMetadata
impl Debug for ChannelMetadata
Source§impl Hash for ChannelMetadata
impl Hash for ChannelMetadata
Source§impl PartialEq for ChannelMetadata
impl PartialEq for ChannelMetadata
impl StructuralPartialEq for ChannelMetadata
Auto Trait Implementations§
impl Freeze for ChannelMetadata
impl RefUnwindSafe for ChannelMetadata
impl Send for ChannelMetadata
impl Sync for ChannelMetadata
impl Unpin for ChannelMetadata
impl UnwindSafe for ChannelMetadata
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