pub trait Execute: Send {
// Required methods
fn execute(self: Box<Self>, update: Update, request: Arc<RequestBuilder>);
fn clone_box(&self) -> Box<dyn Execute>;
}pub trait Execute: Send {
// Required methods
fn execute(self: Box<Self>, update: Update, request: Arc<RequestBuilder>);
fn clone_box(&self) -> Box<dyn Execute>;
}