pub struct DecodeStringError;Expand description
Failed to decode a string as WINDOWS-1252.
This means that the scenario file contained a string that could not be decoded using the WINDOWS-1252 code page. In the future, genie-scx will support other encodings.
Trait Implementations§
Source§impl Clone for DecodeStringError
impl Clone for DecodeStringError
Source§fn clone(&self) -> DecodeStringError
fn clone(&self) -> DecodeStringError
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 DecodeStringError
impl Debug for DecodeStringError
Source§impl Display for DecodeStringError
impl Display for DecodeStringError
Source§impl Error for DecodeStringError
impl Error for DecodeStringError
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 From<DecodeStringError> for Error
impl From<DecodeStringError> for Error
Source§fn from(source: DecodeStringError) -> Self
fn from(source: DecodeStringError) -> Self
Converts to this type from the input type.
impl Copy for DecodeStringError
Auto Trait Implementations§
impl Freeze for DecodeStringError
impl RefUnwindSafe for DecodeStringError
impl Send for DecodeStringError
impl Sync for DecodeStringError
impl Unpin for DecodeStringError
impl UnwindSafe for DecodeStringError
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