pub enum HitBoxResult {
Miss,
Inside(f64),
Outside(f64, f64),
}Variants§
Auto Trait Implementations§
impl Freeze for HitBoxResult
impl RefUnwindSafe for HitBoxResult
impl Send for HitBoxResult
impl Sync for HitBoxResult
impl Unpin for HitBoxResult
impl UnwindSafe for HitBoxResult
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