ocpi-tariffs 0.49.0

OCPI tariff calculations
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::string_slice, reason = "tests are allowed to panic")]

use super::{Error, ErrorKind};

#[test]
const fn error_should_be_send_and_sync() {
    const fn f<T: Send + Sync>() {}

    f::<Error>();
    f::<ErrorKind>();
}