aboutsummaryrefslogtreecommitdiff
path: root/examples/async/interfaces/cat.rs
blob: 478f7e0bfd8eebba07d87acf3eafa146e51f197d (plain)
1
2
3
4
pub trait ICat: Send + Sync
{
    fn meow(&self);
}