pub trait Route {
// Required methods
fn matches_uri(&self, uri: String) -> bool;
fn get_schema(&self) -> &SqlTableSchema;
}Required Methods§
fn matches_uri(&self, uri: String) -> bool
fn get_schema(&self) -> &SqlTableSchema
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".