pub trait SQLIndexInfo:
Any
+ Send
+ Sync {
// Required methods
fn table(&self) -> &dyn SQLTableInfo;
fn name(&self) -> &'static str;
// Provided method
fn is_unique(&self) -> bool { ... }
}pub trait SQLIndexInfo:
Any
+ Send
+ Sync {
// Required methods
fn table(&self) -> &dyn SQLTableInfo;
fn name(&self) -> &'static str;
// Provided method
fn is_unique(&self) -> bool { ... }
}