pub struct DecodedText {
pub text: String,
pub decode_warning: bool,
}Expand description
Decoded text plus whether lossy decoding was required.
Fields§
§text: String§decode_warning: boolTrait Implementations§
Source§impl Clone for DecodedText
impl Clone for DecodedText
Source§fn clone(&self) -> DecodedText
fn clone(&self) -> DecodedText
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DecodedText
impl RefUnwindSafe for DecodedText
impl Send for DecodedText
impl Sync for DecodedText
impl Unpin for DecodedText
impl UnsafeUnpin for DecodedText
impl UnwindSafe for DecodedText
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