plctag-derive

Crates.ioplctag-derive
lib.rsplctag-derive
version0.3.1
sourcesrc
created_at2021-09-14 07:22:47.130936
updated_at2023-01-14 12:46:20.346973
descriptionmacros for `plctag`
homepagehttps://github.com/Joylei/plctag-rs
repositoryhttps://github.com/Joylei/plctag-rs.git
max_upload_size
id451080
size14,776
joylei (Joylei)

documentation

https://docs.rs/crate/plctag/

README

plctag-derive

macros for plctag

crates.io docs build license

Usage

please use it with plctag

With this crate, the macros derive plctag_core::Decode and plctag_core::Encode for you automatically.

Examples

use plctag_core::{RawTag, Result, ValueExt};
use plctag_derive::{Decode, Encode};

#[derive(Debug, Default, Decode, Encode)]
struct MyUDT {
    #[tag(offset=0)]
    a: u32,
    #[tag(offset=4)]
    b: u32,
}


fn main() {
    let tag = RawTag::new("make=system&family=library&name=debug&debug=4", 100).unwrap();
    let res = tag.read(100);
    assert!(res.is_ok());
    let udt: MyUDT = tag.get_value(0).unwrap();
    assert_eq!(udt.a, 4);
    assert_eq!(udt.b, 0);
}

License

MIT

Commit count: 195

cargo fmt