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