pub trait Routable {
// Provided methods
fn query_ids(&self) -> impl IntoIterator<Item = u32> { ... }
fn message_ids(&self) -> impl IntoIterator<Item = u32> { ... }
}Provided Methods§
fn query_ids(&self) -> impl IntoIterator<Item = u32>
fn message_ids(&self) -> impl IntoIterator<Item = u32>
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.