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
Object Safety§
This trait is not object safe.