Giter VIP home page Giter VIP logo

serialize-rs's Introduction

serialize-rs

Use serialize-rs as a crate

add dependencies to Cargo.toml

[dependencies]
serialize-rs = { git = "https://github.com/mutalisk999/serialize-rs.git"}

Example for Serialize/DeSerialize User Define Type (Complex Struct Type)

extern crate serialize_rs;

use std::io::{BufRead, Write, BufWriter, Cursor};
use std::error::Error;
use serialize_rs::{Serialize, DeSerialize};

#[derive(Debug)]
struct Xxxx
{
    a: i32,
    b: String,
    c: Option<f32>
}

impl Xxxx {
    fn new() -> Xxxx {
        Xxxx {
            a: 0i32,
            b: String::new(),
            c: Some(0.0f32)
        }
    }
}

impl Serialize for Xxxx {
    fn serialize(&self, w: &mut dyn Write) -> Result<(), Box<dyn Error>> {
        self.a.serialize(w)?;
        self.b.serialize(w)?;
        self.c.serialize(w)?;
        Ok(())
    }
}

impl DeSerialize for Xxxx {
    fn deserialize(&mut self, r: &mut dyn BufRead) -> Result<(), Box<dyn Error>> {
        self.a.deserialize(r)?;
        self.b.deserialize(r)?;
        self.c.deserialize(r)?;
        Ok(())
    }
}

fn main() {
    let mut x = Xxxx::new();
    x.a = 100;
    x.b = String::from("hello world");
    x.c = Some(0.123456f32);
    let mut buf = BufWriter::new(Vec::new());
    let _ = x.serialize(&mut buf);

    let mut buf = Cursor::new(buf.buffer());
    let mut val: Xxxx = Xxxx::new();
    println!("{:?}", val);
    let _ = val.deserialize(&mut buf);
    println!("{:?}", val);
}

output print

Xxxx { a: 0, b: "", c: Some(0.0) }
Xxxx { a: 100, b: "hello world", c: Some(0.123456) }

or simply

extern crate serialize_rs;

use std::io::{BufRead, Write, BufWriter, Cursor};
use std::error::Error;
use serialize_rs::{Serialize, DeSerialize, serialize_struct, deserialize_struct};

#[derive(Debug)]
struct Xxxx
{
    a: i32,
    b: String,
    c: Option<f32>
}

impl Xxxx {
    fn new() -> Xxxx {
        Xxxx {
            a: 0i32,
            b: String::new(),
            c: Some(0.0f32)
        }
    }
}

serialize_struct!(Xxxx, a, b, c);
deserialize_struct!(Xxxx, a, b, c);

fn main() {
    let mut x = Xxxx::new();
    x.a = 100;
    x.b = String::from("hello world");
    x.c = Some(0.123456f32);
    let mut buf = BufWriter::new(Vec::new());
    let _ = x.serialize(&mut buf);

    let mut buf = Cursor::new(buf.buffer());
    let mut val: Xxxx = Xxxx::new();
    println!("{:?}", val);
    let _ = val.deserialize(&mut buf);
    println!("{:?}", val);
}

output print

Xxxx { a: 0, b: "", c: Some(0.0) }
Xxxx { a: 100, b: "hello world", c: Some(0.123456) }

serialize-rs's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.