Struct heed_types::SerdeBincode
source · pub struct SerdeBincode<T>(/* private fields */);
Expand description
Describes a type that is Serialize
/Deserialize
and uses bincode
to do so.
It can borrow bytes from the original slice.
Trait Implementations§
source§impl<'a, T> BytesDecode<'a> for SerdeBincode<T>where
T: Deserialize<'a> + 'a,
impl<'a, T> BytesDecode<'a> for SerdeBincode<T>where
T: Deserialize<'a> + 'a,
source§fn bytes_decode(bytes: &'a [u8]) -> Result<Self::DItem, BoxedError>
fn bytes_decode(bytes: &'a [u8]) -> Result<Self::DItem, BoxedError>
Decode the given bytes as
DItem
.source§impl<'a, T> BytesEncode<'a> for SerdeBincode<T>where
T: Serialize + 'a,
impl<'a, T> BytesEncode<'a> for SerdeBincode<T>where
T: Serialize + 'a,
source§fn bytes_encode(item: &'a Self::EItem) -> Result<Cow<'_, [u8]>, BoxedError>
fn bytes_encode(item: &'a Self::EItem) -> Result<Cow<'_, [u8]>, BoxedError>
Encode the given item as bytes.
impl<T> Send for SerdeBincode<T>
impl<T> Sync for SerdeBincode<T>
Auto Trait Implementations§
impl<T> Freeze for SerdeBincode<T>
impl<T> RefUnwindSafe for SerdeBincode<T>where
T: RefUnwindSafe,
impl<T> Unpin for SerdeBincode<T>where
T: Unpin,
impl<T> UnwindSafe for SerdeBincode<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more