Skip to main content

BedVal

Trait BedVal 

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

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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