rmw-bytes

Crates.iormw-bytes
lib.rsrmw-bytes
version0.1.14
sourcesrc
created_at2021-11-19 10:23:11.621082
updated_at2021-11-20 02:34:23.199879
descriptionto bytes and from bytes
homepage
repositoryhttps://github.com/rmw-lib/node/tree/master/bytes
max_upload_size
id484407
size6,822
gcxfd (gcxfd)

documentation

README

rmw-bytes

to bytes and from bytes

use example

use anyhow::Result;
use rmw_bytes::Bytes;
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddrV4, SocketAddrV6};

fn main() -> Result<()> {
  let x: u16 = 12345;
  let bytes = x.encode();
  dbg!(u16::decode(&bytes)?, bytes);

  let x: bool = false;
  let bytes = x.encode();
  dbg!(bool::decode(&bytes)?, bytes);

  let x = SocketAddrV6::new(
    Ipv6Addr::new(1, 2, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf),
    8080,
    0,
    0,
  );
  let bytes = x.encode();
  dbg!(SocketAddrV6::decode(&bytes)?, bytes);

  let x = SocketAddrV4::new(Ipv4Addr::new(1, 2, 3, 4), 8080);
  let bytes = x.encode();
  dbg!(SocketAddrV4::decode(&bytes)?, bytes);

  Ok(())
}

output as below


关于

本项目隶属于人民网络(rmw.link) 代码计划。

人民网络

Commit count: 0

cargo fmt