jude 0.1.2

dynamic reloading of shared libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[repr(C)]
#[derive(Clone, Debug)]
pub struct JudePlugin {
    pub word: String,
    pub one: u8,
    pub two: f32,
    pub tree: bool,
}

#[no_mangle]
pub fn who_am_i(_self: &JudePlugin) {
    println!("my name is Jude");
}