pub struct DecodingResult {
pub decoded: String,
pub charset: Charset,
pub lang: String,
pub defects: Vec<Defect>,
}
Expand description
The result from decoding an encoded word.
Fields§
§decoded: String
§charset: Charset
§lang: String
§defects: Vec<Defect>
Trait Implementations§
Source§impl Clone for DecodingResult
impl Clone for DecodingResult
Source§fn clone(&self) -> DecodingResult
fn clone(&self) -> DecodingResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DecodingResult
impl Debug for DecodingResult
Source§impl PartialEq for DecodingResult
impl PartialEq for DecodingResult
impl StructuralPartialEq for DecodingResult
Auto Trait Implementations§
impl Freeze for DecodingResult
impl RefUnwindSafe for DecodingResult
impl Send for DecodingResult
impl Sync for DecodingResult
impl Unpin for DecodingResult
impl UnwindSafe for DecodingResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more