#[repr(C)]pub struct GhosttyPointCoordinate {
pub x: u16,
pub y: u32,
}Expand description
A coordinate in the terminal grid.
@ingroup point
Fields§
§x: u16Column (0-indexed).
y: u32Row (0-indexed). May exceed page size for screen/history tags.
Trait Implementations§
Source§impl Clone for GhosttyPointCoordinate
impl Clone for GhosttyPointCoordinate
Source§fn clone(&self) -> GhosttyPointCoordinate
fn clone(&self) -> GhosttyPointCoordinate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GhosttyPointCoordinate
impl Debug for GhosttyPointCoordinate
Source§impl Default for GhosttyPointCoordinate
impl Default for GhosttyPointCoordinate
Source§fn default() -> GhosttyPointCoordinate
fn default() -> GhosttyPointCoordinate
Returns the “default value” for a type. Read more
impl Copy for GhosttyPointCoordinate
Auto Trait Implementations§
impl Freeze for GhosttyPointCoordinate
impl RefUnwindSafe for GhosttyPointCoordinate
impl Send for GhosttyPointCoordinate
impl Sync for GhosttyPointCoordinate
impl Unpin for GhosttyPointCoordinate
impl UnsafeUnpin for GhosttyPointCoordinate
impl UnwindSafe for GhosttyPointCoordinate
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