Struct cesu8::Cesu8DecodingError
source · [−]pub struct Cesu8DecodingError;
Expand description
The CESU-8 data could not be decoded as valid UTF-8 data.
Trait Implementations
sourceimpl Clone for Cesu8DecodingError
impl Clone for Cesu8DecodingError
sourcefn clone(&self) -> Cesu8DecodingError
fn clone(&self) -> Cesu8DecodingError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Cesu8DecodingError
impl Debug for Cesu8DecodingError
sourceimpl Display for Cesu8DecodingError
impl Display for Cesu8DecodingError
sourceimpl Error for Cesu8DecodingError
impl Error for Cesu8DecodingError
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourcefn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
impl Copy for Cesu8DecodingError
Auto Trait Implementations
impl RefUnwindSafe for Cesu8DecodingError
impl Send for Cesu8DecodingError
impl Sync for Cesu8DecodingError
impl Unpin for Cesu8DecodingError
impl UnwindSafe for Cesu8DecodingError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more