3 releases

0.1.2 Jun 6, 2022
0.1.1 Feb 24, 2022
0.1.0 Dec 14, 2021

#1450 in Encoding

Download history 51/week @ 2024-03-13 78/week @ 2024-03-20 101/week @ 2024-03-27 94/week @ 2024-04-03 60/week @ 2024-04-10 58/week @ 2024-04-17 65/week @ 2024-04-24 68/week @ 2024-05-01 68/week @ 2024-05-08 59/week @ 2024-05-15 64/week @ 2024-05-22 69/week @ 2024-05-29 51/week @ 2024-06-05 48/week @ 2024-06-12 65/week @ 2024-06-19 49/week @ 2024-06-26

219 downloads per month
Used in 9 crates (2 directly)

MIT license

29KB
759 lines

Jcers

A Encode/Decode lib for Jce.

Features

  • derive: derive macro support

How to use

use jcers::{JceGet, JcePut};

#[derive(Debug, Default, JceGet, JcePut)]
pub struct YouJceStruct {  // only support NamedStruct
    #[jce(0)]              // jce tag
    pub a_named_field: u8, // a field
}

let s: YouJceStruct = jcers::from_buf(&mut buf).unwrap(); // buf should impl bytes::Buf

JceType

JceCode JceType RustType
0 u8 u8
1 i16 i16
2 i32 i32
3 i64 i64
4 f32 f32
5 f64 f64
6 ShortString String
7 LongString String
8 Map HashMap<K, V>
9 List Vec<V>
10 Struct T
11 StructEnd -
12 Empty T::default()
13 bytes bytes::Bytes

Other

  • u16 will be encoded as i32
  • u32 will be encoded as i64
  • u16 and u32 can't be decoded from jce

Dependencies

~130–385KB