goblin 0.0.5

An impish, cross-platform binary parsing and loading crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
macro_rules! io_error {
    ($fmt:expr) =>
        (
            Err(io::Error::new(io::ErrorKind::Other, $fmt))
        );

    ($fmt:expr, $($arg:tt)*) =>
        (
            Err(io::Error::new(io::ErrorKind::Other, format!($fmt, $($arg)*)))
        );
}