Enum osu_file_parser::osu_file::general::error::ParseError
source · [−]#[non_exhaustive]
pub enum ParseError {
ParseIntError(ParseIntError),
ParseZeroOneBoolError(ParseZeroOneBoolError),
ParseCountdownSpeedError(ParseCountdownSpeedError),
ParseGameModeError(ParseGameModeError),
ParseSampleSetError(ParseSampleSetError),
ParseOverlayPositionError(ParseOverlayPositionError),
InvalidColonSet,
InvalidKey,
DuplicateField,
InvalidVersion,
InvalidCommaList,
}
Expand description
Error used when there was a problem parsing the General
section.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
ParseIntError(ParseIntError)
A Field in General
failed to parse as a Integer
.
ParseZeroOneBoolError(ParseZeroOneBoolError)
A field in General
failed to parse as a bool
from an Integer
.
ParseCountdownSpeedError(ParseCountdownSpeedError)
A field in General
failed to parse as a CountdownSpeed
.
ParseGameModeError(ParseGameModeError)
A field in General
failed to parse as a GameMode
.
ParseSampleSetError(ParseSampleSetError)
ParseOverlayPositionError(ParseOverlayPositionError)
InvalidColonSet
When the line isn’t in a key: value
format.
InvalidKey
Invalid key name was used.
DuplicateField
Duplicate field in General
were found.
InvalidVersion
Field doesn’t exist in version.
InvalidCommaList
Invalid comma list, expected format of key: value, value, value, ...
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
use the Display impl or to_string()
sourceimpl From<()> for ParseError
impl From<()> for ParseError
sourceimpl From<ParseCountdownSpeedError> for ParseError
impl From<ParseCountdownSpeedError> for ParseError
sourcefn from(source: ParseCountdownSpeedError) -> Self
fn from(source: ParseCountdownSpeedError) -> Self
Converts to this type from the input type.
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<ParseGameModeError> for ParseError
impl From<ParseGameModeError> for ParseError
sourcefn from(source: ParseGameModeError) -> Self
fn from(source: ParseGameModeError) -> 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.
sourceimpl From<ParseOverlayPositionError> for ParseError
impl From<ParseOverlayPositionError> for ParseError
sourcefn from(source: ParseOverlayPositionError) -> Self
fn from(source: ParseOverlayPositionError) -> Self
Converts to this type from the input type.
sourceimpl From<ParseSampleSetError> for ParseError
impl From<ParseSampleSetError> for ParseError
sourcefn from(source: ParseSampleSetError) -> Self
fn from(source: ParseSampleSetError) -> 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