pub struct WithOtherIntEncoding<O, I>where
O: Options,
I: IntEncoding,{ /* private fields */ }
Expand description
A configuration struct with a user-specified length encoding
Trait Implementations§
Source§impl<O, I> Clone for WithOtherIntEncoding<O, I>
impl<O, I> Clone for WithOtherIntEncoding<O, I>
Source§fn clone(&self) -> WithOtherIntEncoding<O, I>
fn clone(&self) -> WithOtherIntEncoding<O, I>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<O, I> Copy for WithOtherIntEncoding<O, I>
Auto Trait Implementations§
impl<O, I> Freeze for WithOtherIntEncoding<O, I>where
O: Freeze,
impl<O, I> RefUnwindSafe for WithOtherIntEncoding<O, I>where
O: RefUnwindSafe,
I: RefUnwindSafe,
impl<O, I> Send for WithOtherIntEncoding<O, I>
impl<O, I> Sync for WithOtherIntEncoding<O, I>
impl<O, I> Unpin for WithOtherIntEncoding<O, I>
impl<O, I> UnwindSafe for WithOtherIntEncoding<O, I>where
O: UnwindSafe,
I: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Options for Twhere
T: InternalOptions,
impl<T> Options for Twhere
T: InternalOptions,
Source§fn with_no_limit(self) -> WithOtherLimit<Self, Infinite>
fn with_no_limit(self) -> WithOtherLimit<Self, Infinite>
Sets the byte limit to be unlimited.
This is the default.
Source§fn with_limit(self, limit: u64) -> WithOtherLimit<Self, Bounded>
fn with_limit(self, limit: u64) -> WithOtherLimit<Self, Bounded>
Sets the byte limit to
limit
.Source§fn with_little_endian(self) -> WithOtherEndian<Self, LittleEndian>
fn with_little_endian(self) -> WithOtherEndian<Self, LittleEndian>
Sets the endianness to little-endian
This is the default.
Source§fn with_big_endian(self) -> WithOtherEndian<Self, BigEndian>
fn with_big_endian(self) -> WithOtherEndian<Self, BigEndian>
Sets the endianness to big-endian
Source§fn with_native_endian(self) -> WithOtherEndian<Self, NativeEndian>
fn with_native_endian(self) -> WithOtherEndian<Self, NativeEndian>
Sets the endianness to the the machine-native endianness
Source§fn with_varint_encoding(self) -> WithOtherIntEncoding<Self, VarintEncoding>
fn with_varint_encoding(self) -> WithOtherIntEncoding<Self, VarintEncoding>
Sets the length encoding to varint
Source§fn with_fixint_encoding(self) -> WithOtherIntEncoding<Self, FixintEncoding>
fn with_fixint_encoding(self) -> WithOtherIntEncoding<Self, FixintEncoding>
Sets the length encoding to be fixed
Source§fn reject_trailing_bytes(self) -> WithOtherTrailing<Self, RejectTrailing>
fn reject_trailing_bytes(self) -> WithOtherTrailing<Self, RejectTrailing>
Sets the deserializer to reject trailing bytes
Source§fn allow_trailing_bytes(self) -> WithOtherTrailing<Self, AllowTrailing>
fn allow_trailing_bytes(self) -> WithOtherTrailing<Self, AllowTrailing>
Sets the deserializer to allow trailing bytes
Source§fn serialize<S>(self, t: &S) -> Result<Vec<u8>, Box<ErrorKind>>
fn serialize<S>(self, t: &S) -> Result<Vec<u8>, Box<ErrorKind>>
Serializes a serializable object into a
Vec
of bytes using this configurationSource§fn serialized_size<T>(self, t: &T) -> Result<u64, Box<ErrorKind>>
fn serialized_size<T>(self, t: &T) -> Result<u64, Box<ErrorKind>>
Returns the size that an object would be if serialized using Bincode with this configuration
Source§fn serialize_into<W, T>(self, w: W, t: &T) -> Result<(), Box<ErrorKind>>
fn serialize_into<W, T>(self, w: W, t: &T) -> Result<(), Box<ErrorKind>>
Serializes an object directly into a
Writer
using this configuration Read moreSource§fn deserialize<'a, T>(self, bytes: &'a [u8]) -> Result<T, Box<ErrorKind>>where
T: Deserialize<'a>,
fn deserialize<'a, T>(self, bytes: &'a [u8]) -> Result<T, Box<ErrorKind>>where
T: Deserialize<'a>,
Deserializes a slice of bytes into an instance of
T
using this configurationSource§fn deserialize_seed<'a, T>(
self,
seed: T,
bytes: &'a [u8],
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
T: DeserializeSeed<'a>,
fn deserialize_seed<'a, T>(
self,
seed: T,
bytes: &'a [u8],
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
T: DeserializeSeed<'a>,
Deserializes a slice of bytes with state
seed
using this configuration.Source§fn deserialize_from<R, T>(self, reader: R) -> Result<T, Box<ErrorKind>>where
R: Read,
T: DeserializeOwned,
fn deserialize_from<R, T>(self, reader: R) -> Result<T, Box<ErrorKind>>where
R: Read,
T: DeserializeOwned,
Deserializes an object directly from a
Read
er using this configuration Read moreSource§fn deserialize_from_seed<'a, R, T>(
self,
seed: T,
reader: R,
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
R: Read,
T: DeserializeSeed<'a>,
fn deserialize_from_seed<'a, R, T>(
self,
seed: T,
reader: R,
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
R: Read,
T: DeserializeSeed<'a>,
Source§fn deserialize_from_custom<'a, R, T>(
self,
reader: R,
) -> Result<T, Box<ErrorKind>>where
R: BincodeRead<'a>,
T: DeserializeOwned,
fn deserialize_from_custom<'a, R, T>(
self,
reader: R,
) -> Result<T, Box<ErrorKind>>where
R: BincodeRead<'a>,
T: DeserializeOwned,
Deserializes an object from a custom
BincodeRead
er using the default configuration.
It is highly recommended to use deserialize_from
unless you need to implement
BincodeRead
for performance reasons. Read moreSource§fn deserialize_from_custom_seed<'a, R, T>(
self,
seed: T,
reader: R,
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
R: BincodeRead<'a>,
T: DeserializeSeed<'a>,
fn deserialize_from_custom_seed<'a, R, T>(
self,
seed: T,
reader: R,
) -> Result<<T as DeserializeSeed<'a>>::Value, Box<ErrorKind>>where
R: BincodeRead<'a>,
T: DeserializeSeed<'a>,
Deserializes an object from a custom
BincodeRead
er with state seed
using the default
configuration. It is highly recommended to use deserialize_from
unless you need to
implement BincodeRead
for performance reasons. Read more