Enum term_transcript::TermError [−][src]
#[non_exhaustive]
pub enum TermError {
UnfinishedSequence,
NonCsiSequence(u8),
InvalidSgrFinalByte(u8),
UnfinishedColor,
InvalidColorType(String),
InvalidColorIndex(ParseIntError),
Io(Error),
}Expand description
Errors that can occur when processing terminal output.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unfinished escape sequence.
NonCsiSequence(u8)Non-CSI escape sequence. The enclosed byte is the first byte of the sequence (excluding
0x1b).
InvalidSgrFinalByte(u8)Invalid final byte for an SGR escape sequence.
Unfinished color spec.
InvalidColorType(String)Invalid type of a color spec.
InvalidColorIndex(ParseIntError)Invalid ANSI color index.
Io(Error)IO error.
Trait Implementations
impl Error for TermError[src]
impl Error for TermError[src]fn source(&self) -> Option<&(dyn StdError + 'static)>[src]
fn source(&self) -> Option<&(dyn StdError + 'static)>[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for TermError
impl Send for TermError
impl Sync for TermError
impl Unpin for TermError
impl !UnwindSafe for TermError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more