varnish 0.6.0

A Rust framework for creating Varnish Caching Proxy extensions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
struct ObjNoCtor;

#[varnish::vmod]
mod err {
    use super::ObjNoCtor;
    impl ObjNoCtor {
        pub fn func() -> i64 {
            0
        }
    }
}

fn main() {}