| 228 | |
| 229 | #[derive(Debug)] |
| 230 | pub struct ClockBoundError { |
| 231 | pub kind: ClockBoundErrorKind, |
| 232 | pub errno: Errno, |
| 233 | pub detail: String, |
| 234 | } |
| 235 | |
| 236 | impl From<ShmError> for ClockBoundError { |
| 237 | fn from(value: ShmError) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected