pub enum ConvError {
MjlogError(MjlogError),
TenhouJsonError(TenhouJsonError),
NotFoundActionGO,
NotFoundActionUN1,
NotFoundTerminalAction,
NotFoundRound,
NotFoundFinalResult,
InvalidRoundFormat,
InvalidTileFormat,
}Variants§
MjlogError(MjlogError)
TenhouJsonError(TenhouJsonError)
NotFoundActionGO
NotFoundActionUN1
NotFoundTerminalAction
NotFoundRound
NotFoundFinalResult
InvalidRoundFormat
InvalidTileFormat
Trait Implementations§
Source§impl Error for ConvError
impl Error for ConvError
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()
Source§impl From<MjlogError> for ConvError
impl From<MjlogError> for ConvError
Source§fn from(source: MjlogError) -> Self
fn from(source: MjlogError) -> Self
Converts to this type from the input type.
Source§impl From<TenhouJsonError> for ConvError
impl From<TenhouJsonError> for ConvError
Source§fn from(source: TenhouJsonError) -> Self
fn from(source: TenhouJsonError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConvError
impl !RefUnwindSafe for ConvError
impl Send for ConvError
impl Sync for ConvError
impl Unpin for ConvError
impl !UnwindSafe for ConvError
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