Struct bytecodec::combinator::TryMapFrom [−][src]
pub struct TryMapFrom<C, T, E, F> { /* fields omitted */ }Combinator that tries to convert items into ones that suited to the inner encoder by calling the given function.
This is created by calling EncodeExt::try_map_from method.
Methods
impl<C, T, E, F> TryMapFrom<C, T, E, F>[src]
impl<C, T, E, F> TryMapFrom<C, T, E, F>ⓘImportant traits for &'a mut Rpub fn inner_ref(&self) -> &C[src]
pub fn inner_ref(&self) -> &CReturns a reference to the inner encoder.
ⓘImportant traits for &'a mut Rpub fn inner_mut(&mut self) -> &mut C[src]
pub fn inner_mut(&mut self) -> &mut CReturns a mutable reference to the inner encoder.
pub fn into_inner(self) -> C[src]
pub fn into_inner(self) -> CTakes ownership of this instance and returns the inner encoder.
Trait Implementations
impl<C: Debug, T: Debug, E: Debug, F: Debug> Debug for TryMapFrom<C, T, E, F>[src]
impl<C: Debug, T: Debug, E: Debug, F: Debug> Debug for TryMapFrom<C, T, E, F>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<C, T, E, F> Encode for TryMapFrom<C, T, E, F> where
C: Encode,
F: Fn(T) -> Result<C::Item, E>,
Error: From<E>, [src]
impl<C, T, E, F> Encode for TryMapFrom<C, T, E, F> where
C: Encode,
F: Fn(T) -> Result<C::Item, E>,
Error: From<E>, type Item = T
The type of items to be encoded.
fn encode(&mut self, buf: &mut [u8], eos: Eos) -> Result<usize>[src]
fn encode(&mut self, buf: &mut [u8], eos: Eos) -> Result<usize>Encodes the items in the encoder and writes the encoded bytes to the given buffer. Read more
fn start_encoding(&mut self, item: Self::Item) -> Result<()>[src]
fn start_encoding(&mut self, item: Self::Item) -> Result<()>Tries to start encoding the given item. Read more
fn requiring_bytes(&self) -> ByteCount[src]
fn requiring_bytes(&self) -> ByteCountReturns the number of bytes required to encode all the items in the encoder. Read more
fn is_idle(&self) -> bool[src]
fn is_idle(&self) -> boolReturns true if there are no items to be encoded in the encoder, otherwise false. Read more
impl<C, T, E, F> SizedEncode for TryMapFrom<C, T, E, F> where
C: SizedEncode,
F: Fn(T) -> Result<C::Item, E>,
Error: From<E>, [src]
impl<C, T, E, F> SizedEncode for TryMapFrom<C, T, E, F> where
C: SizedEncode,
F: Fn(T) -> Result<C::Item, E>,
Error: From<E>, fn exact_requiring_bytes(&self) -> u64[src]
fn exact_requiring_bytes(&self) -> u64Returns the exact number of bytes required to encode all the items remaining in the encoder.