Struct doryen_extra::UPosition [−][src]
A struct representing an unsigned
Position
determined by its x and y values.
Fields
x: u32The x value the Position is currently representing.
y: u32The 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.
fn add(self, rhs: (u32, u32)) -> Self::Output[src]
impl Add<UPosition> for UPosition[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Self) -> Self::Output[src]
impl Add<u32> for UPosition[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: u32) -> Self::Output[src]
impl AddAssign<(u32, u32)> for UPosition[src]
impl AddAssign<u32> for UPosition[src]
fn add_assign(&mut self, rhs: u32)[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.
fn div(self, rhs: u32) -> Self::Output[src]
impl DivAssign<u32> for UPosition[src]
fn div_assign(&mut self, rhs: u32)[src]
impl Eq for UPosition[src]
impl From<(u32, u32)> for UPosition[src]
impl From<UPosition> for FPosition[src]
impl Mul<u32> for UPosition[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, rhs: u32) -> Self::Output[src]
impl MulAssign<u32> for UPosition[src]
fn mul_assign(&mut self, rhs: u32)[src]
impl PartialEq<UPosition> for UPosition[src]
impl Rem<u32> for UPosition[src]
type Output = Self
The resulting type after applying the % operator.
fn rem(self, rhs: u32) -> Self::Output[src]
impl RemAssign<u32> for UPosition[src]
fn rem_assign(&mut self, rhs: u32)[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.
fn sub(self, rhs: (u32, u32)) -> Self::Output[src]
impl Sub<UPosition> for UPosition[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: Self) -> Self::Output[src]
impl Sub<u32> for UPosition[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: u32) -> Self::Output[src]
impl SubAssign<(u32, u32)> for UPosition[src]
impl SubAssign<u32> for UPosition[src]
fn sub_assign(&mut self, rhs: u32)[src]
impl TryFrom<FPosition> for UPosition[src]
type Error = TryFromPositionError
The type returned in the event of a conversion error.
fn try_from(value: FPosition) -> Result<Self, Self::Error>[src]
impl TryFrom<Position> for UPosition[src]
type Error = TryFromPositionError
The type returned in the event of a conversion error.
fn try_from(value: Position) -> Result<Self, Self::Error>[src]
impl TryFrom<UPosition> for Position[src]
Auto Trait Implementations
impl RefUnwindSafe for UPosition
impl Send for UPosition
impl Sync for UPosition
impl Unpin for UPosition
impl UnwindSafe for UPosition
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Send + Sync + Any,
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]
U: From<T>,
impl<T, Rhs> NumAssignOps<Rhs> for T where
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, [src]
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
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]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,