[−][src]Struct serde_bytes::Bytes
Wrapper around &[u8]
to serialize and deserialize efficiently.
use std::collections::HashMap; use std::io; use serde_bytes::Bytes; fn print_encoded_cache() -> bincode::Result<()> { let mut cache = HashMap::new(); cache.insert(3, Bytes::new(b"three")); cache.insert(2, Bytes::new(b"two")); cache.insert(1, Bytes::new(b"one")); bincode::serialize_into(&mut io::stdout(), &cache) }
Methods
impl Bytes
[src]
Trait Implementations
impl<'de: 'a, 'a> Deserialize<'de> for &'a Bytes
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl Serialize for Bytes
[src]
impl AsRef<[u8]> for Bytes
[src]
impl<'a> IntoIterator for &'a Bytes
[src]
type Item = &'a u8
The type of the elements being iterated over.
type IntoIter = <&'a [u8] as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl<'a> IntoIterator for &'a mut Bytes
[src]
type Item = &'a mut u8
The type of the elements being iterated over.
type IntoIter = <&'a mut [u8] as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl<'a> Default for &'a Bytes
[src]
impl ToOwned for Bytes
[src]
type Owned = ByteBuf
The resulting type after obtaining ownership.
fn to_owned(&self) -> Self::Owned
[src]
fn clone_into(&self, target: &mut Self::Owned)
[src]
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl Eq for Bytes
[src]
impl<Rhs: ?Sized> PartialOrd<Rhs> for Bytes where
Rhs: AsRef<[u8]>,
[src]
Rhs: AsRef<[u8]>,
fn partial_cmp(&self, other: &Rhs) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<Rhs: ?Sized> PartialEq<Rhs> for Bytes where
Rhs: AsRef<[u8]>,
[src]
Rhs: AsRef<[u8]>,
fn eq(&self, other: &Rhs) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Ord for Bytes
[src]
fn cmp(&self, other: &Bytes) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl AsMut<[u8]> for Bytes
[src]
impl Deref for Bytes
[src]
impl DerefMut for Bytes
[src]
impl Hash for Bytes
[src]
fn hash<H: Hasher>(&self, state: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for Bytes
[src]
impl Borrow<Bytes> for ByteBuf
[src]
impl BorrowMut<Bytes> for ByteBuf
[src]
fn borrow_mut(&mut self) -> &mut Bytes
[src]
impl Serialize for Bytes
[src]
impl<'a, 'de: 'a> Deserialize<'de> for &'a Bytes
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Unpin for Bytes
impl Sync for Bytes
impl Send for Bytes
impl UnwindSafe for Bytes
impl RefUnwindSafe for Bytes
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,