pub enum StreamdownError {
Io(Error),
Config(String),
Parse(String),
Render(String),
Plugin(String),
}Expand description
Main error type for streamdown operations
Variants§
Io(Error)
IO error during file operations
Config(String)
Configuration error
Parse(String)
Parse error during markdown processing
Render(String)
Render error during output generation
Plugin(String)
Plugin error
Trait Implementations§
Source§impl Debug for StreamdownError
impl Debug for StreamdownError
Source§impl Display for StreamdownError
impl Display for StreamdownError
Source§impl Error for StreamdownError
impl Error for StreamdownError
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()
Auto Trait Implementations§
impl Freeze for StreamdownError
impl !RefUnwindSafe for StreamdownError
impl Send for StreamdownError
impl Sync for StreamdownError
impl Unpin for StreamdownError
impl !UnwindSafe for StreamdownError
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