commit | f4e6e902c30dc85c0f9251f93a3996012ce6fb5d | [log] [tgz] |
---|---|---|
author | Andrew Scull <[email protected]> | Thu Jul 07 20:23:45 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Jul 07 20:23:45 2022 +0000 |
tree | b8ff784236e9362417d589fc29255e139a6028d9 | |
parent | 7caff7e231995ad1100580114094e8f0df5ca26e [diff] | |
parent | da0c0dcd5076cf65ffcf92bfa357c87c9e7fdef5 [diff] |
Make available to all APEXs am: cc9740323f am: 9bed6e7426 am: a1ee1cdd60 am: da0c0dcd50 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/ciborium-io/+/2148593 Change-Id: I014564ab5e1f248565bfc93b36b2df7445e81e2f Signed-off-by: Automerger Merge Worker <[email protected]>
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