accio_rs 0.1.0

macros for sync and async runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_export]
macro_rules! accioe {
    ($r:ident,$y:ty,$z:ty,$c:ident)
    => 
    {
        super::super::super::acciof!($y,$z,$c);
        let f = AccioF::new($r);
        let ret = f.await;
        ret
    }
}