pub enum LcfMapUnitReadError {
Show 13 variants
Decode(Error),
InvalidDirection(u32),
InvalidScrollType(u32),
InvalidTriggerType(u32),
InvalidPriorityType(u32),
InvalidAnimationType(u32),
MissingEventConditionFlags,
UnknownEventInstructionData(u32, Vec<u8>),
UnknownEventMoveRouteData(u32, Vec<u8>),
UnknownEventConditionData(u32, Vec<u8>),
UnknownEventPageData(u32, Vec<u8>),
UnknownEventData(u32, Vec<u8>),
UnknownData(u32, Vec<u8>),
}Variants§
Decode(Error)
InvalidDirection(u32)
InvalidScrollType(u32)
InvalidTriggerType(u32)
InvalidPriorityType(u32)
InvalidAnimationType(u32)
MissingEventConditionFlags
UnknownEventInstructionData(u32, Vec<u8>)
UnknownEventMoveRouteData(u32, Vec<u8>)
UnknownEventConditionData(u32, Vec<u8>)
UnknownEventPageData(u32, Vec<u8>)
UnknownEventData(u32, Vec<u8>)
UnknownData(u32, Vec<u8>)
Trait Implementations§
Source§impl Debug for LcfMapUnitReadError
impl Debug for LcfMapUnitReadError
Source§impl Display for LcfMapUnitReadError
impl Display for LcfMapUnitReadError
Source§impl Error for LcfMapUnitReadError
impl Error for LcfMapUnitReadError
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<Error> for LcfMapUnitReadError
impl From<Error> for LcfMapUnitReadError
Source§impl From<LcfMapUnitReadError> for LcfReadError
impl From<LcfMapUnitReadError> for LcfReadError
Source§fn from(source: LcfMapUnitReadError) -> Self
fn from(source: LcfMapUnitReadError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LcfMapUnitReadError
impl !RefUnwindSafe for LcfMapUnitReadError
impl Send for LcfMapUnitReadError
impl Sync for LcfMapUnitReadError
impl Unpin for LcfMapUnitReadError
impl !UnwindSafe for LcfMapUnitReadError
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