[][src]Struct doryen_extra::UPosition

pub struct UPosition {
    pub x: u32,
    pub y: u32,
}

A struct representing an unsigned Position determined by its x and y values.

Fields

x: u32

The x value the Position is currently representing.

y: u32

The y value the Position is currently representing.

Implementations

impl UPosition[src]

pub const ORIGIN: Self[src]

A constant representing a Position where both x and y are 0.

pub const fn new(x: u32, y: u32) -> Self[src]

Returns a Position with the given x and y values.

Trait Implementations

impl Add<(u32, u32)> for UPosition[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<UPosition> for UPosition[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<u32> for UPosition[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<(u32, u32)> for UPosition[src]

impl AddAssign<u32> for UPosition[src]

impl Clone for UPosition[src]

impl Copy for UPosition[src]

impl Debug for UPosition[src]

impl Default for UPosition[src]

impl Display for UPosition[src]

impl Div<u32> for UPosition[src]

type Output = Self

The resulting type after applying the / operator.

impl DivAssign<u32> for UPosition[src]

impl Eq for UPosition[src]

impl From<(u32, u32)> for UPosition[src]

impl From<UPosition> for (u32, u32)[src]

impl Mul<u32> for UPosition[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<u32> for UPosition[src]

impl PartialEq<UPosition> for UPosition[src]

impl Rem<u32> for UPosition[src]

type Output = Self

The resulting type after applying the % operator.

impl RemAssign<u32> for UPosition[src]

impl StructuralEq for UPosition[src]

impl StructuralPartialEq for UPosition[src]

impl Sub<(u32, u32)> for UPosition[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<UPosition> for UPosition[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<u32> for UPosition[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<(u32, u32)> for UPosition[src]

impl SubAssign<u32> for UPosition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,