pub enum ReplayReadError {
Desynced(u32),
Malformed(&'static str),
MalformedUtf8(FromUtf8Error),
IO(Error),
}Variants§
Trait Implementations§
Source§impl Debug for ReplayReadError
impl Debug for ReplayReadError
Source§impl Display for ReplayReadError
impl Display for ReplayReadError
Source§impl Error for ReplayReadError
impl Error for ReplayReadError
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 ReplayReadError
impl From<Error> for ReplayReadError
Source§fn from(err: Error) -> ReplayReadError
fn from(err: Error) -> ReplayReadError
Converts to this type from the input type.
Source§impl From<FromUtf8Error> for ReplayReadError
impl From<FromUtf8Error> for ReplayReadError
Source§fn from(err: FromUtf8Error) -> ReplayReadError
fn from(err: FromUtf8Error) -> ReplayReadError
Converts to this type from the input type.
Source§impl From<LuaTypeError> for ReplayReadError
impl From<LuaTypeError> for ReplayReadError
Source§fn from(_err: LuaTypeError) -> ReplayReadError
fn from(_err: LuaTypeError) -> ReplayReadError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReplayReadError
impl !RefUnwindSafe for ReplayReadError
impl Send for ReplayReadError
impl Sync for ReplayReadError
impl Unpin for ReplayReadError
impl !UnwindSafe for ReplayReadError
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