valkyrie_runtime/errors/
convert.rs

1use super::*;
2
3impl From<ExampleErrorKind> for ExampleError {
4    fn from(value: ExampleErrorKind) -> Self {
5        Self {
6            kind: Box::new(value),
7        }
8    }
9}