pub trait WhiteSpaceE: Eoi {
// Required method
fn utf8_comment() -> Self;
}Expand description
A trait for error types that can represent errors occurring when parsing whitespace.
Required Methods§
Sourcefn utf8_comment() -> Self
fn utf8_comment() -> Self
Create a value indicating that a comment contains non-UTF-8 content.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.