regiface 0.2.5

A crate to ease development of interfacing with registers on embedded peripherals
Documentation
1
2
3
4
5
6
7
8
9
10
11
use core::convert::Infallible;

use crate::ToByteArray;

pub trait Id: ToByteArray<Error = Infallible> {}

impl Id for u8 {}
impl Id for u16 {}
impl Id for u32 {}
impl Id for u64 {}
impl Id for u128 {}