predawn_schema/impls/
bytes.rs

1use bytes::{Bytes, BytesMut};
2
3use super::forward_impl;
4
5forward_impl!(Bytes => Vec<u8>);
6forward_impl!(BytesMut => Vec<u8>);