datalocker 0.3.1

My first Rust crate I made to learn. Basic Database Interface. Currently works with mySQL only. Uses the mysql crate and provides a wrapper around it to make interacting with a mysql database easier.
Documentation

#[derive(Default)]
pub enum MysqlAuthType {
    Native,
    #[default]
    Sha2,
    ClearPassword
}

#[derive(Default)]
pub enum DB {
    #[default]
    MySQL,
    //placeholders
    PostgreSQL,
    MSSql,

}

pub enum ClauseType {
    Select,
    Update,
    Delete
}