pub enum MoveAroundError {
MovePlayer(MovePlayerError),
}
Variants§
MovePlayer(MovePlayerError)
Trait Implementations§
Source§impl Debug for MoveAroundError
impl Debug for MoveAroundError
Source§impl Display for MoveAroundError
impl Display for MoveAroundError
Source§impl Error for MoveAroundError
impl Error for MoveAroundError
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<MovePlayerError> for MoveAroundError
impl From<MovePlayerError> for MoveAroundError
Source§fn from(source: MovePlayerError) -> Self
fn from(source: MovePlayerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MoveAroundError
impl RefUnwindSafe for MoveAroundError
impl Send for MoveAroundError
impl Sync for MoveAroundError
impl Unpin for MoveAroundError
impl UnwindSafe for MoveAroundError
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