Struct utf8::Incomplete[][src]

pub struct Incomplete {
    pub buffer: [u8; 4],
    pub buffer_len: u8,
}

Fields

Methods

impl Incomplete
[src]

  • None: still incomplete, call try_complete again with more input. If no more input is available, this is invalid byte sequence.
  • Some((result, remaining_input)): We’re done with this Incomplete. To keep decoding, pass remaining_input to decode().

Trait Implementations

impl Debug for Incomplete
[src]

Formats the value using the given formatter. Read more

impl Copy for Incomplete
[src]

impl Clone for Incomplete
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Incomplete

impl Sync for Incomplete