pub trait JcePut: Sized {
    fn jce_put(self, jce_mut: &mut JceMut, tag: u8) { ... }
    fn jce_put_raw(self, _: &mut JceMut) { ... }
    fn freeze(self) -> Bytes { ... }
}
Expand description

Serialize JceValue into Bytes

Provided Methods

Implementations on Foreign Types

Implementors