5 releases
0.0.7 | Mar 7, 2022 |
---|---|
0.0.6 | Feb 14, 2022 |
0.0.5 | Feb 14, 2022 |
0.0.2 | Jan 12, 2022 |
0.0.1 | Jan 10, 2022 |
#5 in #rmw
28 downloads per month
Used in rmw_config
6KB
145 lines
rmw-str
to str and from str
use example
use anyhow::Result;
use rmw_str::Str;
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddrV4, SocketAddrV6};
fn main() -> Result<()> {
let x: u16 = 12345;
let str = x.encode();
dbg!(u16::decode(&str)?, str);
let x: bool = false;
let str = x.encode();
dbg!(bool::decode(&str)?, str);
let x = SocketAddrV6::new(
Ipv6Addr::new(1, 2, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf),
8080,
0,
0,
);
let str = x.encode();
dbg!(SocketAddrV6::decode(&str)?, str);
let x = SocketAddrV4::new(Ipv4Addr::new(1, 2, 3, 4), 8080);
let str = x.encode();
dbg!(SocketAddrV4::decode(&str)?, str);
Ok(())
}
output as below
关于
本项目隶属于人民网络(rmw.link) 代码计划。
Dependencies
~130KB