pub(crate) trait DbAddress: FromStr {
type Int;
// Required method
fn to_int(&self) -> Self::Int;
}Expand description
A type that can be an address entry in one of our databases.
Required Associated Types§
Required Methods§
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.