Vendored version of write16 from crates.io
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2022-07-18 16:30:42 +03:00
src Initial commit 2022-07-18 16:23:03 +03:00
.gitignore Initial commit 2022-07-18 16:23:03 +03:00
Cargo.toml Documentation tweaks 2022-07-18 16:30:42 +03:00
COPYRIGHT Initial commit 2022-07-18 16:23:03 +03:00
LICENSE-APACHE Initial commit 2022-07-18 16:23:03 +03:00
LICENSE-MIT Initial commit 2022-07-18 16:23:03 +03:00
README.md Documentation tweaks 2022-07-18 16:30:42 +03:00

write16

crates.io docs.rs

write16 provides the trait Write16, which a UTF-16 analog of the core::fmt::Write trait (the sink part—not the formatting part).

This is a no_std crate.

Licensing

TL;DR: Apache-2.0 OR MIT

Please see the file named COPYRIGHT.

Documentation

Generated API documentation is available online.

Features

  • alloc: An implementation of Write16 for alloc::vec::Vec.
  • smallvec: An implementation of Write16 for smallvec::SmallVec
  • arrayvec: An implementation of Write16 for arrayvec::ArrayVec

Release Notes

1.0.0

The initial release.