1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use crate::;
/// The core trait to be implemented for all types that represent readable or writable register values
///
/// This trait provides minimal value on its own, but is a building block to be combined with either [`ReadableRegister`]
/// or [`WritableRegister`].
/// A marker trait that represents a type that can be retrieved by reading a register
///
/// This trait can be manually implemented, or may be derived as such
///
/// ```
/// use regiface::{register, ReadableRegister, FromByteArray};
///
/// #[register(42u8)]
/// #[derive(ReadableRegister, Debug)]
/// pub struct MyRegister {
/// foo: u8
/// }
///
/// impl FromByteArray for MyRegister {
/// type Error = core::convert::Infallible;
/// type Array = [u8; 1];
///
/// fn from_bytes(bytes: Self::Array) -> Result<Self, Self::Error> {
/// Ok(Self { foo: bytes[0] })
/// }
/// }
/// ```
/// A marker trait that represents a type that can be written into a register
///
/// This trait can be manually implemented, or may be derived as such
///
/// ```
/// use regiface::{register, WritableRegister, ToByteArray};
///
/// #[register(42u8)]
/// #[derive(WritableRegister, Debug)]
/// pub struct MyRegister {
/// foo: u8
/// }
///
/// impl ToByteArray for MyRegister {
/// type Error = core::convert::Infallible;
/// type Array = [u8; 1];
///
/// fn to_bytes(self) -> Result<Self::Array, Self::Error> {
/// Ok([self.foo])
/// }
/// }
/// ```