pub struct CursorPosition {
pub x: i64,
pub y: i64,
}Expand description
This struct holds information on the cursor position
Fields§
§x: i64The x position of the cursor
y: i64The y position of the cursor
Trait Implementations§
Source§impl Clone for CursorPosition
impl Clone for CursorPosition
Source§fn clone(&self) -> CursorPosition
fn clone(&self) -> CursorPosition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CursorPosition
Source§impl Debug for CursorPosition
impl Debug for CursorPosition
Source§impl<'de> Deserialize<'de> for CursorPosition
impl<'de> Deserialize<'de> for CursorPosition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CursorPosition
Source§impl HyprData for CursorPosition
impl HyprData for CursorPosition
Source§fn instance_get(instance: &Instance) -> Result<Self>
fn instance_get(instance: &Instance) -> Result<Self>
This method gets the data
Source§async fn instance_get_async(instance: &Instance) -> Result<Self>
async fn instance_get_async(instance: &Instance) -> Result<Self>
This method gets the data (async)
Source§impl PartialEq for CursorPosition
impl PartialEq for CursorPosition
Source§fn eq(&self, other: &CursorPosition) -> bool
fn eq(&self, other: &CursorPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CursorPosition
impl Serialize for CursorPosition
impl StructuralPartialEq for CursorPosition
Auto Trait Implementations§
impl Freeze for CursorPosition
impl RefUnwindSafe for CursorPosition
impl Send for CursorPosition
impl Sync for CursorPosition
impl Unpin for CursorPosition
impl UnsafeUnpin for CursorPosition
impl UnwindSafe for CursorPosition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more