diff --git a/rust/cymbal/src/traits.rs b/rust/cymbal/src/traits.rs index 6d4e82fde6f48..b8057a0746cde 100644 --- a/rust/cymbal/src/traits.rs +++ b/rust/cymbal/src/traits.rs @@ -8,6 +8,7 @@ use crate::{ #[async_trait] pub trait Resolver { // Resolvers work on a per-frame basis, so we can be clever about the order - // in which we resolve them. + // in which we resolve them. We also force any resolver to handle all frame + // types async fn resolve(&self, raw: RawFrame) -> Result; }