base_core_socialist_values
TypeScript icon, indicating that this package has built-in type declarations

0.3.4 • Public • Published

富强、民主、文明、和谐

自由、平等、公正、法治

爱国、敬业、诚信、友善

Let the evil man in the middle know WHAT WE BELIEVE IN :)

Build status License: MIT Crate version Rust Docs

Encoder

Implemented Write

// examples/encoder.rs
use base_core_socialist_values::Encoder;
use std::io::{self, stdout, stdin};

fn main() -> io::Result<()> {
    let mut reader = stdin();
    let mut writer = stdout();
    io::copy(&mut reader, &mut Encoder::new(&mut writer))?;
    Ok(())
}
cargo run --example encoder

run, enter and Ctrl D (there is buffer in stdout)

Decoder

Implemented Write

// examples/decoder.rs
use base_core_socialist_values::Decoder;
use std::io::{self, stdout, stdin};

fn main() -> io::Result<()> {
    let mut reader = stdin();
    let mut writer = stdout();
    io::copy(&mut reader, &mut Decoder::new(&mut writer))?;
    Ok(())
}
cargo run --example decoder

run, enter and Ctrl D (there is buffer in stdout)

Readme

Keywords

none

Package Sidebar

Install

npm i base_core_socialist_values

Weekly Downloads

1

Version

0.3.4

License

MIT

Unpacked Size

78 kB

Total Files

5

Last publish

Collaborators

  • yangkeao