use Buffer;
/// A trait for describing a buffer with a max capacity. Useful for `no_std` environments.
/// Automatically implemented for `Vec<u8>` when `alloc` enabled
/// A trait for describing a buffer which can be resized. Useful for `no_std` environments.
/// Automatically implemented for `Vec<u8>` when `alloc` enabled