Enum encoding_rs::EncoderResult
source · pub enum EncoderResult {
InputEmpty,
OutputFull,
Unmappable(char),
}
Expand description
Result of a (potentially partial) encode operation without replacement.
Variants§
InputEmpty
The input was exhausted.
If this result was returned from a call where last
was true
, the
decoding process has completed. Otherwise, the caller should call a
decode method again with more input.
OutputFull
The encoder cannot produce another unit of output, because the output buffer does not have enough space left.
The caller must provide more output space upon the next call and re-push the remaining input to the decoder.
Unmappable(char)
The encoder encountered an unmappable character.
The caller must either treat this as a fatal error or must append a placeholder to the output and then re-push the remaining input to the encoder.
Trait Implementations§
source§impl Debug for EncoderResult
impl Debug for EncoderResult
source§impl PartialEq for EncoderResult
impl PartialEq for EncoderResult
source§fn eq(&self, other: &EncoderResult) -> bool
fn eq(&self, other: &EncoderResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for EncoderResult
impl StructuralPartialEq for EncoderResult
Auto Trait Implementations§
impl Freeze for EncoderResult
impl RefUnwindSafe for EncoderResult
impl Send for EncoderResult
impl Sync for EncoderResult
impl Unpin for EncoderResult
impl UnwindSafe for EncoderResult
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