pub struct Axises<V: Debug> {
pub horizontal: V,
pub vertical: V,
}Expand description
A { horizontal, vertical } pair.
Fields§
§horizontal: VA horizontal (x-axis) value
vertical: VA vertical (y-axis) value
Trait Implementations§
impl<V: Copy + Debug> Copy for Axises<V>
Auto Trait Implementations§
impl<V> Freeze for Axises<V>where
V: Freeze,
impl<V> RefUnwindSafe for Axises<V>where
V: RefUnwindSafe,
impl<V> Send for Axises<V>where
V: Send,
impl<V> Sync for Axises<V>where
V: Sync,
impl<V> Unpin for Axises<V>where
V: Unpin,
impl<V> UnwindSafe for Axises<V>where
V: UnwindSafe,
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