noodles-bed 0.34.0

BED (Browser Extensible Data) reader and writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Feature record other fields.

mod value;

pub use self::value::Value;

/// Feature record other fields.
pub trait OtherFields {
    /// Returns whether there are any other fields.
    fn is_empty(&self) -> bool;

    /// Return the number of other fields.
    fn len(&self) -> usize;

    /// Returns an iterator over other fields.
    fn iter(&self) -> Box<dyn Iterator<Item = Value<'_>> + '_>;
}