javabc 0.1.2

Java bytecode manipulation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use Error;
use raw;

use std::io::prelude::*;

#[derive(Debug)]
pub struct Field;

impl raw::Serializable for Field
{
    fn read(_read: &mut Read) -> Result<Self, Error> {
        unimplemented!();
    }

    fn write(&self, _write: &mut Write) -> Result<(), Error> {
        unimplemented!();
    }
}