| 122 | /// # } |
| 123 | /// ``` |
| 124 | /// |
| 125 | /// [alpm-architecture]: <https://alpm.archlinux.page/specifications/alpm-architecture.7.html> |
| 126 | #[derive(Debug)] |
| 127 | pub struct ArchProperty<T> { |
| 128 | /// The optional [alpm-architecture] of the `value`. |
| 129 | /// |
| 130 | /// If `architecture` is [`None`] it is considered to be `"any"`. |
| 131 | /// [alpm-architecture]: <https://alpm.archlinux.page/specifications/alpm-architecture.7.html> |
| 132 | pub architecture: Option<Architecture>, |
| 133 | /// The architecture specific type. |
| 134 | pub value: T, |
| 135 | } |
nothing calls this directly
no outgoing calls
no test coverage detected