Struct bincode::config::WithOtherTrailing [−][src]
pub struct WithOtherTrailing<O: Options, T: TrailingBytes> { /* fields omitted */ }
A configuration struct with a user-specified trailing bytes behavior.
Trait Implementations
impl<O: Clone + Options, T: Clone + TrailingBytes> Clone for WithOtherTrailing<O, T>
[src]
impl<O: Clone + Options, T: Clone + TrailingBytes> Clone for WithOtherTrailing<O, T>
[src]fn clone(&self) -> WithOtherTrailing<O, T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<O: Copy + Options, T: Copy + TrailingBytes> Copy for WithOtherTrailing<O, T>
[src]
Auto Trait Implementations
impl<O, T> RefUnwindSafe for WithOtherTrailing<O, T> where
O: RefUnwindSafe,
T: RefUnwindSafe,
O: RefUnwindSafe,
T: RefUnwindSafe,
impl<O, T> Send for WithOtherTrailing<O, T> where
O: Send,
T: Send,
O: Send,
T: Send,
impl<O, T> Sync for WithOtherTrailing<O, T> where
O: Sync,
T: Sync,
O: Sync,
T: Sync,
impl<O, T> Unpin for WithOtherTrailing<O, T> where
O: Unpin,
T: Unpin,
O: Unpin,
T: Unpin,
impl<O, T> UnwindSafe for WithOtherTrailing<O, T> where
O: UnwindSafe,
T: UnwindSafe,
O: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Options for T where
T: InternalOptions,
[src]
impl<T> Options for T where
T: InternalOptions,
[src]fn with_no_limit(self) -> WithOtherLimit<Self, Infinite>
[src]
fn with_limit(self, limit: u64) -> WithOtherLimit<Self, Bounded>
[src]
fn with_little_endian(self) -> WithOtherEndian<Self, LittleEndian>
[src]
fn with_big_endian(self) -> WithOtherEndian<Self, BigEndian>
[src]
fn with_native_endian(self) -> WithOtherEndian<Self, NativeEndian>
[src]
fn with_varint_encoding(self) -> WithOtherIntEncoding<Self, VarintEncoding>
[src]
fn with_fixint_encoding(self) -> WithOtherIntEncoding<Self, FixintEncoding>
[src]
fn reject_trailing_bytes(self) -> WithOtherTrailing<Self, RejectTrailing>
[src]
fn allow_trailing_bytes(self) -> WithOtherTrailing<Self, AllowTrailing>
[src]
fn serialize<S: ?Sized + Serialize>(self, t: &S) -> Result<Vec<u8>>
[src]
fn serialized_size<T: ?Sized + Serialize>(self, t: &T) -> Result<u64>
[src]
fn serialize_into<W: Write, T: ?Sized + Serialize>(
self,
w: W,
t: &T
) -> Result<()>
[src]
self,
w: W,
t: &T
) -> Result<()>
fn deserialize<'a, T: Deserialize<'a>>(self, bytes: &'a [u8]) -> Result<T>
[src]
fn deserialize_seed<'a, T: DeserializeSeed<'a>>(
self,
seed: T,
bytes: &'a [u8]
) -> Result<T::Value>
[src]
self,
seed: T,
bytes: &'a [u8]
) -> Result<T::Value>
fn deserialize_from<R: Read, T: DeserializeOwned>(self, reader: R) -> Result<T>
[src]
fn deserialize_from_seed<'a, R: Read, T: DeserializeSeed<'a>>(
self,
seed: T,
reader: R
) -> Result<T::Value>
[src]
self,
seed: T,
reader: R
) -> Result<T::Value>
fn deserialize_from_custom<'a, R: BincodeRead<'a>, T: DeserializeOwned>(
self,
reader: R
) -> Result<T>
[src]
self,
reader: R
) -> Result<T>
fn deserialize_from_custom_seed<'a, R: BincodeRead<'a>, T: DeserializeSeed<'a>>(
self,
seed: T,
reader: R
) -> Result<T::Value>
[src]
self,
seed: T,
reader: R
) -> Result<T::Value>