tcmb_evds 0.1.0

A Rust crate for reaching the database of The Central Bank of The Republic of Turkey (CBRT).
Documentation
1
2
3
4
5
6
use super::enum_specific::EnumSpecific;

pub(crate) trait ConvertingToRustEnum<T: EnumSpecific> {
    /// converts implemented type to an enum type declared with T.
    fn convert(&self) -> T;
}