Trait bed_reader::BedVal

source ·
pub trait BedVal: Copy + Default + From<i8> + Debug + Sync + Send + Missing + PartialEq { }
Expand description

A trait alias, used internally, for the values of a .bed file, namely i8, f32, f64.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> BedVal for Twhere T: Copy + Default + From<i8> + Debug + Sync + Send + Missing + PartialEq,