Enum encoding_rs::EncoderResult [−][src]
#[must_use]pub enum EncoderResult { InputEmpty, OutputFull, Unmappable(char), }
Result of a (potentially partial) encode operation without replacement.
Variants
InputEmptyThe 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.
OutputFullThe 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
impl Debug for EncoderResult[src]
impl Debug for EncoderResultfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for EncoderResult[src]
impl PartialEq for EncoderResultfn eq(&self, other: &EncoderResult) -> bool[src]
fn eq(&self, other: &EncoderResult) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &EncoderResult) -> bool[src]
fn ne(&self, other: &EncoderResult) -> boolThis method tests for !=.
impl Eq for EncoderResult[src]
impl Eq for EncoderResultAuto Trait Implementations
impl Send for EncoderResult
impl Send for EncoderResultimpl Sync for EncoderResult
impl Sync for EncoderResult