Struct data_encoding::DecodePartial [−][src]
pub struct DecodePartial { pub read: usize, pub written: usize, pub error: DecodeError, }
Decoding error with partial result
Fields
read: usize
Number of bytes read from input
This number does not exceed the error position: read <= error.position
.
written: usize
Number of bytes written to output
This number does not exceed the decoded length: written <= decode_len(read)
.
error: DecodeError
Decoding error
Trait Implementations
impl Clone for DecodePartial
[src]
impl Clone for DecodePartial
[src]fn clone(&self) -> DecodePartial
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<DecodePartial> for DecodePartial
[src]
impl PartialEq<DecodePartial> for DecodePartial
[src]