pub trait MessageControllerProxyInterface: Send + Sync {
type GetDetailsResponseFut: Future<Output = Result<MessageControllerGetDetailsResult, Error>> + Send;
// Required method
fn get_details(
&self,
handle: u64,
include_attachment: bool,
) -> Self::GetDetailsResponseFut;
}