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
sourceimpl Debug for EncoderResult
impl Debug for EncoderResult
sourceimpl PartialEq<EncoderResult> for EncoderResult
impl PartialEq<EncoderResult> for EncoderResult
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &EncoderResult) -> bool
fn ne(&self, other: &EncoderResult) -> bool
This method tests for !=
.
impl Eq for EncoderResult
impl StructuralEq for EncoderResult
impl StructuralPartialEq for EncoderResult
Auto Trait Implementations
impl RefUnwindSafe for EncoderResult
impl Send for EncoderResult
impl Sync for EncoderResult
impl Unpin for EncoderResult
impl UnwindSafe for EncoderResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more