Struct os_str_bytes::EncodingError
source · pub struct EncodingError(/* private fields */);Expand description
The error that occurs when a byte sequence is not representable in the platform encoding.
Result::unwrap should almost always be called on results containing
this error. It should be known whether or not byte sequences are properly
encoded for the platform, since the module-level documentation
discourages using encoded bytes in interchange. Results are returned
primarily to make panicking behavior explicit.
On Unix, this error is never returned, but OsStrExt or OsStringExt
should be used instead if that needs to be guaranteed.
Trait Implementations§
source§impl Debug for EncodingError
impl Debug for EncodingError
source§impl Display for EncodingError
impl Display for EncodingError
source§impl Error for EncodingError
impl Error for EncodingError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for EncodingError
impl PartialEq for EncodingError
impl Eq for EncodingError
impl StructuralPartialEq for EncodingError
Auto Trait Implementations§
impl Freeze for EncodingError
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
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