pub trait RoleTablesRead {
// Required method
fn iter(
&self,
) -> Box<dyn Iterator<Item = (&RelationIdentity, &dyn RoleTableSecurity)> + '_>;
}Expand description
The iterator borrows its entries while the original table registry guard is retained.
Required Methods§
fn iter( &self, ) -> Box<dyn Iterator<Item = (&RelationIdentity, &dyn RoleTableSecurity)> + '_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".