rtpmidi 0.4.4

A library for RTP-MIDI / AppleMIDI
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) trait StatusBit {
    fn status_bit(&self) -> bool;
}

impl StatusBit for u8 {
    fn status_bit(&self) -> bool {
        self & 0x80 != 0
    }
}