pub struct LcdXY {
pub x: usize,
pub y: usize,
}Expand description
Represents valid coordinates within the LCD space.
Fields§
§x: usizeThe X coordinate.
y: usizeThe Y coordinate.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LcdXY
impl RefUnwindSafe for LcdXY
impl Send for LcdXY
impl Sync for LcdXY
impl Unpin for LcdXY
impl UnsafeUnpin for LcdXY
impl UnwindSafe for LcdXY
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