1 pub trait Trait { method(&self)2 async fn method(&self); 3 } 4 5 pub struct Struct; 6 7 impl Trait for Struct { method(&self)8 async fn method(&self) {} 9 } 10 main()11 fn main() { 12 let _: &dyn Trait; 13 } 14