Struct bytecodec::combinator::Last [−][src]
pub struct Last<E: Encode> { /* fields omitted */ }
Combinator for representing encoders that accepts only one additional item.
This is created by calling EncodeExt::last.
Methods
impl<E: Encode> Last<E>[src]
impl<E: Encode> Last<E>ⓘImportant traits for &'a mut Rpub fn inner_ref(&self) -> &E[src]
pub fn inner_ref(&self) -> &EReturns a reference to the inner encoder.
ⓘImportant traits for &'a mut Rpub fn inner_mut(&mut self) -> &mut E[src]
pub fn inner_mut(&mut self) -> &mut EReturns a mutable reference to the inner encoder.
pub fn into_inner(self) -> E[src]
pub fn into_inner(self) -> ETakes ownership of this instance and returns the inner encoder.
Trait Implementations
impl<E: Debug + Encode> Debug for Last<E> where
E::Item: Debug, [src]
impl<E: Debug + Encode> Debug for Last<E> where
E::Item: Debug, fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<E: Default + Encode> Default for Last<E> where
E::Item: Default, [src]
impl<E: Default + Encode> Default for Last<E> where
E::Item: Default, impl<E: Encode> Encode for Last<E>[src]
impl<E: Encode> Encode for Last<E>type Item = Never
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 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
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
impl<E: SizedEncode> SizedEncode for Last<E>[src]
impl<E: SizedEncode> SizedEncode for Last<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.