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
7
8
9
10
pub trait HavingDateValidation {
    /// checks emptiness of given date string/s. 
    fn is_given_date_empty(&self) -> bool;

    /// checks validity of given date string/s.
    fn is_string_length_valid(&self) -> bool;

    // checks overall criteria and includes all the required checking functions.
    fn is_given_date_valid(&self) -> bool;    
}