pub trait QueueFootprinter {
type Origin;
// Required method
fn message_count(origin: Self::Origin) -> u64;
}
Expand description
Reads the footprint of queues for a specific origin type.
Required Associated Types§
Required Methods§
fn message_count(origin: Self::Origin) -> u64
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.