Trait SqlDriverCommon

Source
pub trait SqlDriverCommon {
    const ELECTION_LEADER_TABLE_NAME: &'static str = "election_leader";
    const ELECTION_MEMBER_TABLE_NAME: &'static str = "election_member";

    // Provided methods
    fn election_table_name() -> &'static str { ... }
    fn member_table_name() -> &'static str { ... }
}

Provided Associated Constants§

Source

const ELECTION_LEADER_TABLE_NAME: &'static str = "election_leader"

Source

const ELECTION_MEMBER_TABLE_NAME: &'static str = "election_member"

Provided Methods§

Source

fn election_table_name() -> &'static str

Source

fn member_table_name() -> &'static str

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§