pub enum StderrEncoding {
Utf8,
LocaleDependent,
BytesOnly,
Unknown,
}Expand description
Encoding metadata for any captured stderr (T16.5) — class/location comparison is primary, but raw captures still need encoding so a text mismatch is never confused with a semantic one.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StderrEncoding
impl Clone for StderrEncoding
Source§fn clone(&self) -> StderrEncoding
fn clone(&self) -> StderrEncoding
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 StderrEncoding
Source§impl Debug for StderrEncoding
impl Debug for StderrEncoding
impl Eq for StderrEncoding
Source§impl PartialEq for StderrEncoding
impl PartialEq for StderrEncoding
Source§fn eq(&self, other: &StderrEncoding) -> bool
fn eq(&self, other: &StderrEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StderrEncoding
Auto Trait Implementations§
impl Freeze for StderrEncoding
impl RefUnwindSafe for StderrEncoding
impl Send for StderrEncoding
impl Sync for StderrEncoding
impl Unpin for StderrEncoding
impl UnsafeUnpin for StderrEncoding
impl UnwindSafe for StderrEncoding
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