borrow-visualizer 0.1.0

A tool for visualizing borrows in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub fn info<'a>() -> &'a str {
    "This is a tool for visualizing borrows in Rust. Developed by Achmed Hibatillah."
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_info() {
        let info: &str = info();
        println!("{}", info);
    }
}