Struct lucas_test::LogicalPosition
source · [−]pub struct LogicalPosition<P> {
pub x: P,
pub y: P,
}Expand description
A position represented in logical pixels.
Fields
x: PVertical axis value.
y: PHorizontal axis value.
Implementations
sourceimpl<T> LogicalPosition<T> where
T: Pixel,
impl<T> LogicalPosition<T> where
T: Pixel,
sourcepub fn cast<X>(&self) -> LogicalPosition<X> where
X: Pixel,
pub fn cast<X>(&self) -> LogicalPosition<X> where
X: Pixel,
Casts the logical size to another pixel type.
Trait Implementations
sourceimpl<P> Clone for LogicalPosition<P> where
P: Clone,
impl<P> Clone for LogicalPosition<P> where
P: Clone,
sourcepub fn clone(&self) -> LogicalPosition<P>
pub fn clone(&self) -> LogicalPosition<P>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<P> Debug for LogicalPosition<P> where
P: Debug,
impl<P> Debug for LogicalPosition<P> where
P: Debug,
sourceimpl<P> Default for LogicalPosition<P> where
P: Default,
impl<P> Default for LogicalPosition<P> where
P: Default,
sourcepub fn default() -> LogicalPosition<P>
pub fn default() -> LogicalPosition<P>
Returns the “default value” for a type. Read more
sourceimpl<'de, P> Deserialize<'de> for LogicalPosition<P> where
P: Deserialize<'de>,
impl<'de, P> Deserialize<'de> for LogicalPosition<P> where
P: Deserialize<'de>,
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<LogicalPosition<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<LogicalPosition<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<P> Hash for LogicalPosition<P> where
P: Hash,
impl<P> Hash for LogicalPosition<P> where
P: Hash,
sourceimpl<P> PartialEq<LogicalPosition<P>> for LogicalPosition<P> where
P: PartialEq<P>,
impl<P> PartialEq<LogicalPosition<P>> for LogicalPosition<P> where
P: PartialEq<P>,
sourcepub fn eq(&self, other: &LogicalPosition<P>) -> bool
pub fn eq(&self, other: &LogicalPosition<P>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcepub fn ne(&self, other: &LogicalPosition<P>) -> bool
pub fn ne(&self, other: &LogicalPosition<P>) -> bool
This method tests for !=.
sourceimpl<P> Serialize for LogicalPosition<P> where
P: Serialize,
impl<P> Serialize for LogicalPosition<P> where
P: Serialize,
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<P> Copy for LogicalPosition<P> where
P: Copy,
impl<P> Eq for LogicalPosition<P> where
P: Eq,
impl<P> StructuralEq for LogicalPosition<P>
impl<P> StructuralPartialEq for LogicalPosition<P>
Auto Trait Implementations
impl<P> RefUnwindSafe for LogicalPosition<P> where
P: RefUnwindSafe,
impl<P> Send for LogicalPosition<P> where
P: Send,
impl<P> Sync for LogicalPosition<P> where
P: Sync,
impl<P> Unpin for LogicalPosition<P> where
P: Unpin,
impl<P> UnwindSafe for LogicalPosition<P> where
P: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
impl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
sourcefn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
fn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
Derives an instance of Self from the CommandItem. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcepub fn equivalent(&self, key: &K) -> bool
pub fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
impl<T> NoneValue for T where
T: Default,
impl<T> NoneValue for T where
T: Default,
type NoneType = T
pub fn null_value() -> T
pub fn null_value() -> T
The none-equivalent value.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more