(err: E, context: &str)
| 62 | /// ``` |
| 63 | #[inline] |
| 64 | pub fn storage_err<E: Into<PristineError>>(err: E, context: &str) -> ApplyError { |
| 65 | ApplyError::Storage { |
| 66 | source: Box::new(err.into()), |
| 67 | context: context.to_string(), |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // ApplyResult Type Alias |
| 72 |
no outgoing calls
no test coverage detected