simetry 0.2.3

Interface with telemetry of various racing and driving sims
Documentation
1
2
3
4
5
6
7
8
9
use crate::iracing::{VarData, VarType};

pub struct BitField(pub u32);

impl VarData for BitField {
    fn parse(var_type: VarType, data: &[u8]) -> Option<Self> {
        u32::parse(var_type, data).map(Self)
    }
}