| commit | d798639b28e7b71b5892e985648fbd050bb22764 | [log] [tgz] |
|---|---|---|
| author | Andrew Scull <ascull@google.com> | Thu Jul 07 20:41:09 2022 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Jul 07 20:41:09 2022 +0000 |
| tree | b8ff784236e9362417d589fc29255e139a6028d9 | |
| parent | e4363facb5e97dc501961eab4c1ac90868dbe156 [diff] | |
| parent | f4e6e902c30dc85c0f9251f93a3996012ce6fb5d [diff] |
Make available to all APEXs am: cc9740323f am: 9bed6e7426 am: a1ee1cdd60 am: da0c0dcd50 am: f4e6e902c3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/ciborium-io/+/2148593 Change-Id: I0c2a3d7d18959b77f8779f79527439a69b104b12 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Simple, Low-level I/O traits
This crate provides two simple traits: Read and Write. These traits mimic their counterparts in std::io, but are trimmed for simplicity and can be used in no_std and no_alloc environments. Since this crate contains only traits, inline functions and unit structs, it should be a zero-cost abstraction.
If the std feature is enabled, we provide blanket implementations for all std::io types. If the alloc feature is enabled, we provide implementations for Vec<u8>. In all cases, you get implementations for byte slices. You can, of course, implement the traits for your own types.
License: Apache-2.0