Enum osu_file_parser::osu_file::editor::error::ParseError
source · [−]#[non_exhaustive]
pub enum ParseError {
ParseIntError(ParseIntError),
InvalidColonSet,
InvalidKey,
InvalidCommaList,
DuplicateField,
}
Expand description
Error used when there was a problem parsing the Editor
section.
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.
ParseIntError(ParseIntError)
A Field in Editor
failed to parse as a Integer
.
InvalidColonSet
When the line isn’t in a key: value
format.
InvalidKey
Invalid key name was used.
InvalidCommaList
Invalid comma list, expected format of key: value, value, value, ...
DuplicateField
Duplicate field in Editor
.
Trait Implementations
sourceimpl Debug for ParseError
impl Debug for ParseError
sourceimpl Display for ParseError
impl Display for ParseError
sourceimpl Error for ParseError
impl Error for ParseError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<()> for ParseError
impl From<()> for ParseError
sourceimpl From<ParseError> for ParseError
impl From<ParseError> for ParseError
sourcefn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
sourceimpl From<ParseIntError> for ParseError
impl From<ParseIntError> for ParseError
sourcefn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more