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§
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
Object Safety§
This trait is not object safe.