Struct utf8::Incomplete [−][src]
Fields
buffer: [u8; 4]
buffer_len: u8
Methods
impl Incomplete
[src]
impl Incomplete
pub fn empty() -> Self
[src]
pub fn empty() -> Self
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
pub fn new(bytes: &[u8]) -> Self
[src]
pub fn new(bytes: &[u8]) -> Self
pub fn try_complete<'input>(
&mut self,
input: &'input [u8]
) -> Option<(Result<&str, &[u8]>, &'input [u8])>
[src]
pub fn try_complete<'input>(
&mut self,
input: &'input [u8]
) -> Option<(Result<&str, &[u8]>, &'input [u8])>
None
: still incomplete, calltry_complete
again with more input. If no more input is available, this is invalid byte sequence.Some((result, remaining_input))
: We’re done with thisIncomplete
. To keep decoding, passremaining_input
todecode()
.
Trait Implementations
impl Debug for Incomplete
[src]
impl Debug for Incomplete
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Copy for Incomplete
[src]
impl Copy for Incomplete
impl Clone for Incomplete
[src]
impl Clone for Incomplete
fn clone(&self) -> Incomplete
[src]
fn clone(&self) -> Incomplete
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl Send for Incomplete
impl Send for Incomplete
impl Sync for Incomplete
impl Sync for Incomplete