pub enum ScriptTextEncoding {
Utf8Lossy,
Utf16LeLossy,
TokenRender,
}Expand description
Script text encoding used during recovery.
Variants§
Utf8Lossy
UTF-8-compatible lossy decode.
Utf16LeLossy
UTF-16 little-endian lossy decode.
TokenRender
Source-like rendering of tokenized AutoIt script bytes.
Trait Implementations§
Source§impl Clone for ScriptTextEncoding
impl Clone for ScriptTextEncoding
Source§fn clone(&self) -> ScriptTextEncoding
fn clone(&self) -> ScriptTextEncoding
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 moreimpl Copy for ScriptTextEncoding
Source§impl Debug for ScriptTextEncoding
impl Debug for ScriptTextEncoding
impl Eq for ScriptTextEncoding
Source§impl PartialEq for ScriptTextEncoding
impl PartialEq for ScriptTextEncoding
impl StructuralPartialEq for ScriptTextEncoding
Auto Trait Implementations§
impl Freeze for ScriptTextEncoding
impl RefUnwindSafe for ScriptTextEncoding
impl Send for ScriptTextEncoding
impl Sync for ScriptTextEncoding
impl Unpin for ScriptTextEncoding
impl UnsafeUnpin for ScriptTextEncoding
impl UnwindSafe for ScriptTextEncoding
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