Struct TypedSize2D

Source
#[repr(C)]
pub struct TypedSize2D<T, U> { pub width: T, pub height: T, /* private fields */ }
Expand description

A 2d size tagged with a unit.

Fields§

§width: T§height: T

Implementations§

Source§

impl<T, U> TypedSize2D<T, U>

Source

pub fn new(width: T, height: T) -> Self

Constructor taking scalar values.

Source§

impl<T: Clone, U> TypedSize2D<T, U>

Source

pub fn from_lengths(width: Length<T, U>, height: Length<T, U>) -> Self

Constructor taking scalar strongly typed lengths.

Source§

impl<T: Round, U> TypedSize2D<T, U>

Source

pub fn round(&self) -> Self

Rounds each component to the nearest integer value.

This behavior is preserved for negative values (unlike the basic cast).

Source§

impl<T: Ceil, U> TypedSize2D<T, U>

Source

pub fn ceil(&self) -> Self

Rounds each component to the smallest integer equal or greater than the original value.

This behavior is preserved for negative values (unlike the basic cast).

Source§

impl<T: Floor, U> TypedSize2D<T, U>

Source

pub fn floor(&self) -> Self

Rounds each component to the biggest integer equal or lower than the original value.

This behavior is preserved for negative values (unlike the basic cast).

Source§

impl<T: Copy + Clone + Mul<T>, U> TypedSize2D<T, U>

Source

pub fn area(&self) -> T::Output

Source§

impl<T, U> TypedSize2D<T, U>
where T: Copy + One + Add<Output = T> + Sub<Output = T> + Mul<Output = T>,

Source

pub fn lerp(&self, other: Self, t: T) -> Self

Linearly interpolate between this size and another size.

t is expected to be between zero and one.

Source§

impl<T: Zero + PartialOrd, U> TypedSize2D<T, U>

Source§

impl<T: Zero, U> TypedSize2D<T, U>

Source

pub fn zero() -> Self

Source§

impl<T: Copy, U> TypedSize2D<T, U>

Source

pub fn width_typed(&self) -> Length<T, U>

Returns self.width as a Length carrying the unit.

Source

pub fn height_typed(&self) -> Length<T, U>

Returns self.height as a Length carrying the unit.

Source

pub fn to_array(&self) -> [T; 2]

Source

pub fn to_tuple(&self) -> (T, T)

Source

pub fn to_vector(&self) -> TypedVector2D<T, U>

Source

pub fn to_untyped(&self) -> Size2D<T>

Drop the units, preserving only the numeric value.

Source

pub fn from_untyped(p: &Size2D<T>) -> Self

Tag a unitless value with units.

Source§

impl<T: NumCast + Copy, Unit> TypedSize2D<T, Unit>

Source

pub fn cast<NewT: NumCast + Copy>(&self) -> TypedSize2D<NewT, Unit>

Cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), ceil() or floor() before casting.

Source

pub fn try_cast<NewT: NumCast + Copy>(&self) -> Option<TypedSize2D<NewT, Unit>>

Fallible cast from one numeric representation to another, preserving the units.

When casting from floating point to integer coordinates, the decimals are truncated as one would expect from a simple cast, but this behavior does not always make sense geometrically. Consider using round(), ceil() or floor() before casting.

Source

pub fn to_f32(&self) -> TypedSize2D<f32, Unit>

Cast into an f32 size.

Source

pub fn to_f64(&self) -> TypedSize2D<f64, Unit>

Cast into an f64 size.

Source

pub fn to_usize(&self) -> TypedSize2D<usize, Unit>

Cast into an uint size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_u32(&self) -> TypedSize2D<u32, Unit>

Cast into an u32 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_i32(&self) -> TypedSize2D<i32, Unit>

Cast into an i32 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

Source

pub fn to_i64(&self) -> TypedSize2D<i64, Unit>

Cast into an i64 size, truncating decimals if any.

When casting from floating point sizes, it is worth considering whether to round(), ceil() or floor() before the cast in order to obtain the desired conversion behavior.

Source§

impl<T, U> TypedSize2D<T, U>
where T: Signed,

Source

pub fn abs(&self) -> Self

Source

pub fn is_positive(&self) -> bool

Source§

impl<T: PartialOrd, U> TypedSize2D<T, U>

Source

pub fn greater_than(&self, other: &Self) -> BoolVector2D

Source

pub fn lower_than(&self, other: &Self) -> BoolVector2D

Source§

impl<T: PartialEq, U> TypedSize2D<T, U>

Source

pub fn equal(&self, other: &Self) -> BoolVector2D

Source

pub fn not_equal(&self, other: &Self) -> BoolVector2D

Source§

impl<T: Float, U> TypedSize2D<T, U>

Source

pub fn min(self, other: Self) -> Self

Source

pub fn max(self, other: Self) -> Self

Source

pub fn clamp(&self, start: Self, end: Self) -> Self

Trait Implementations§

Source§

impl<T: Copy + Add<T, Output = T>, U> Add<TypedSize2D<T, U>> for TypedPoint2D<T, U>

Source§

type Output = TypedPoint2D<T, U>

The resulting type after applying the + operator.
Source§

fn add(self, other: TypedSize2D<T, U>) -> Self

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, U> Add for TypedSize2D<T, U>

Source§

type Output = TypedSize2D<T, U>

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
Source§

impl<T, U> Clone for TypedSize2D<T, U>
where T: Clone,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, U> Debug for TypedSize2D<T, U>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default, U> Default for TypedSize2D<T, U>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de, T, U> Deserialize<'de> for TypedSize2D<T, U>
where T: Deserialize<'de>,

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<T: Display, U> Display for TypedSize2D<T, U>

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Copy + Div<T, Output = T>, U> Div<T> for TypedSize2D<T, U>

Source§

type Output = TypedSize2D<T, U>

The resulting type after applying the / operator.
Source§

fn div(self, scale: T) -> Self

Performs the / operation. Read more
Source§

impl<T: Copy + Div<T, Output = T>, U1, U2> Div<TypedScale<T, U1, U2>> for TypedSize2D<T, U2>

Source§

type Output = TypedSize2D<T, U1>

The resulting type after applying the / operator.
Source§

fn div(self, scale: TypedScale<T, U1, U2>) -> TypedSize2D<T, U1>

Performs the / operation. Read more
Source§

impl<T: Copy, U> From<[T; 2]> for TypedSize2D<T, U>

Source§

fn from(array: [T; 2]) -> Self

Converts to this type from the input type.
Source§

impl<T: Copy, U> From<(T, T)> for TypedSize2D<T, U>

Source§

fn from(tuple: (T, T)) -> Self

Converts to this type from the input type.
Source§

impl<T, U> From<TypedSize2D<T, U>> for TypedBox2D<T, U>
where T: Copy + Zero + PartialOrd,

Source§

fn from(b: TypedSize2D<T, U>) -> Self

Converts to this type from the input type.
Source§

impl<T, U> From<TypedSize2D<T, U>> for TypedRect<T, U>
where T: Copy + Zero,

Source§

fn from(size: TypedSize2D<T, U>) -> Self

Converts to this type from the input type.
Source§

impl<T, U> Hash for TypedSize2D<T, U>
where T: Hash,

Source§

fn hash<H: Hasher>(&self, h: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: Copy, U> Into<[T; 2]> for TypedSize2D<T, U>

Source§

fn into(self) -> [T; 2]

Converts this type into the (usually inferred) input type.
Source§

impl<T: Copy, U> Into<(T, T)> for TypedSize2D<T, U>

Source§

fn into(self) -> (T, T)

Converts this type into the (usually inferred) input type.
Source§

impl<T: Copy + Mul<T, Output = T>, U> Mul<T> for TypedSize2D<T, U>

Source§

type Output = TypedSize2D<T, U>

The resulting type after applying the * operator.
Source§

fn mul(self, scale: T) -> Self

Performs the * operation. Read more
Source§

impl<T: Copy + Mul<T, Output = T>, U1, U2> Mul<TypedScale<T, U1, U2>> for TypedSize2D<T, U1>

Source§

type Output = TypedSize2D<T, U2>

The resulting type after applying the * operator.
Source§

fn mul(self, scale: TypedScale<T, U1, U2>) -> TypedSize2D<T, U2>

Performs the * operation. Read more
Source§

impl<T, U> PartialEq for TypedSize2D<T, U>
where T: PartialEq,

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, U> Serialize for TypedSize2D<T, U>
where T: Serialize,

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, U> Sub for TypedSize2D<T, U>

Source§

type Output = TypedSize2D<T, U>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
Source§

impl<T: Zero, U> Zero for TypedSize2D<T, U>

Source§

fn zero() -> Self

Source§

impl<T, U> Copy for TypedSize2D<T, U>
where T: Copy,

Source§

impl<T, U> Eq for TypedSize2D<T, U>
where T: Eq,

Auto Trait Implementations§

§

impl<T, U> Freeze for TypedSize2D<T, U>
where T: Freeze,

§

impl<T, U> RefUnwindSafe for TypedSize2D<T, U>

§

impl<T, U> Send for TypedSize2D<T, U>
where T: Send, U: Send,

§

impl<T, U> Sync for TypedSize2D<T, U>
where T: Sync, U: Sync,

§

impl<T, U> Unpin for TypedSize2D<T, U>
where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for TypedSize2D<T, U>
where T: UnwindSafe, U: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,