[−][src]Struct bytecodec::combinator::MapFrom
Combinator for converting items into ones that suited to the inner encoder by calling the given function.
This is created by calling EncodeExt::map_from
method.
Methods
impl<E, T, F> MapFrom<E, T, F>
[src]
pub fn inner_ref(&self) -> &E
[src]
Returns a reference to the inner encoder.
pub fn inner_mut(&mut self) -> &mut E
[src]
Returns a mutable reference to the inner encoder.
pub fn into_inner(self) -> E
[src]
Takes ownership of this instance and returns the inner encoder.
Trait Implementations
impl<E, T, F> Encode for MapFrom<E, T, F> where
E: Encode,
F: Fn(T) -> E::Item,
[src]
E: Encode,
F: Fn(T) -> E::Item,
type Item = T
The type of items to be encoded.
fn encode(&mut self, buf: &mut [u8], eos: Eos) -> Result<usize>
[src]
fn start_encoding(&mut self, item: Self::Item) -> Result<()>
[src]
fn requiring_bytes(&self) -> ByteCount
[src]
fn is_idle(&self) -> bool
[src]
impl<E, T, F> SizedEncode for MapFrom<E, T, F> where
E: SizedEncode,
F: Fn(T) -> E::Item,
[src]
E: SizedEncode,
F: Fn(T) -> E::Item,
fn exact_requiring_bytes(&self) -> u64
[src]
impl<E: Debug, T: Debug, F: Debug> Debug for MapFrom<E, T, F>
[src]
Auto Trait Implementations
impl<E, T, F> Send for MapFrom<E, T, F> where
E: Send,
F: Send,
T: Send,
E: Send,
F: Send,
T: Send,
impl<E, T, F> Unpin for MapFrom<E, T, F> where
E: Unpin,
F: Unpin,
T: Unpin,
E: Unpin,
F: Unpin,
T: Unpin,
impl<E, T, F> Sync for MapFrom<E, T, F> where
E: Sync,
F: Sync,
T: Sync,
E: Sync,
F: Sync,
T: Sync,
impl<E, T, F> UnwindSafe for MapFrom<E, T, F> where
E: UnwindSafe,
F: UnwindSafe,
T: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
T: UnwindSafe,
impl<E, T, F> RefUnwindSafe for MapFrom<E, T, F> where
E: RefUnwindSafe,
F: RefUnwindSafe,
T: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> IoEncodeExt for T where
T: Encode,
[src]
T: Encode,
fn encode_to_write_buf<B>(&mut self, buf: &mut WriteBuf<B>) -> Result<()> where
B: AsMut<[u8]>,
[src]
B: AsMut<[u8]>,
fn encode_all<W: Write>(&mut self, writer: W) -> Result<()>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,