docify_test 0.1.1

A test crate for Docify functionality
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// src/example.rs

#[docify::export]
fn example_function() {
    println!("This is an example function");
}

#[docify::export]
struct ExampleStruct {
    field: i32,
}

impl ExampleStruct {
    #[docify::export]
    fn example_method(&self) {
        println!("This is an example method");
    }
}