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
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.