Struct unsegen::base::basic_types::AxisDiff[][src]

pub struct AxisDiff<T: AxisDimension> { /* fields omitted */ }
Expand description

AxisDiff (the base for ColDiff or RowDiff) specifies a difference between two coordinate points on a terminal grid. (i.e., a coordinate of a vector on the terminal cell grid)

Implementations

impl<T: AxisDimension> AxisDiff<T>[src]

pub fn new(v: i32) -> Self[src]

Create a new AxisDiff from an i32. Any i32 value is valid.

pub fn raw_value(self) -> i32[src]

Unpack the AxisDiff to receive the raw i32 value.

pub fn from_origin(self) -> AxisIndex<T>[src]

Calculate the AxisIndex that has the specified AxisDiff to the origin (i.e., 0). Technically this just converts an AxisIndex into an AxisDiff, but is semantically more explicit.

Examples:

use unsegen::base::{ColIndex, ColDiff};
assert_eq!(ColDiff::new(27).from_origin(), ColIndex::new(27));

pub fn try_into_positive(self) -> Result<PositiveAxisDiff<T>, Self>[src]

Try to convert the current value into a PositiveAxisDiff. If the conversion fails, the original value is returned.

Examples:

use unsegen::base::{ColDiff, Width};
assert_eq!(ColDiff::new(27).try_into_positive(), Ok(Width::new(27).unwrap()));
assert_eq!(ColDiff::new(0).try_into_positive(), Ok(Width::new(0).unwrap()));
assert_eq!(ColDiff::new(-37).try_into_positive(), Err(ColDiff::new(-37)));

pub fn abs(self) -> PositiveAxisDiff<T>[src]

Convert the current value into a PositiveAxisDiff by taking the absolute value of the axis difference.

Examples:

use unsegen::base::{ColDiff, Width};
assert_eq!(ColDiff::new(27).abs(), Width::new(27).unwrap());
assert_eq!(ColDiff::new(0).abs(), Width::new(0).unwrap());
assert_eq!(ColDiff::new(-37).abs(), Width::new(37).unwrap());

pub fn positive_or_zero(self) -> PositiveAxisDiff<T>[src]

Clamp the value into a positive or zero range

Examples:

use unsegen::base::ColDiff;
assert_eq!(ColDiff::new(27).positive_or_zero(), ColDiff::new(27));
assert_eq!(ColDiff::new(0).positive_or_zero(), ColDiff::new(0));
assert_eq!(ColDiff::new(-37).positive_or_zero(), ColDiff::new(0));

Trait Implementations

impl<T: AxisDimension, I: Into<AxisDiff<T>>> Add<I> for AxisDiff<T>[src]

type Output = Self

The resulting type after applying the + operator.

fn add(self, rhs: I) -> Self[src]

Performs the + operation. Read more

impl<T: AxisDimension, I: Into<AxisDiff<T>>> AddAssign<I> for AxisDiff<T>[src]

fn add_assign(&mut self, rhs: I)[src]

Performs the += operation. Read more

impl<T: Clone + AxisDimension> Clone for AxisDiff<T>[src]

fn clone(&self) -> AxisDiff<T>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Debug + AxisDimension> Debug for AxisDiff<T>[src]

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

Formats the value using the given formatter. Read more

impl<T: AxisDimension> Div<i32> for AxisDiff<T>[src]

type Output = AxisDiff<T>

The resulting type after applying the / operator.

fn div(self, rhs: i32) -> Self::Output[src]

Performs the / operation. Read more

impl<T: AxisDimension> From<i32> for AxisDiff<T>[src]

fn from(v: i32) -> Self[src]

Performs the conversion.

impl<T: AxisDimension> Into<AxisDiff<T>> for PositiveAxisDiff<T>[src]

fn into(self) -> AxisDiff<T>[src]

Performs the conversion.

impl<T: AxisDimension> Into<i32> for AxisDiff<T>[src]

fn into(self) -> i32[src]

Performs the conversion.

impl<T: AxisDimension> Mul<i32> for AxisDiff<T>[src]

type Output = Self

The resulting type after applying the * operator.

fn mul(self, rhs: i32) -> Self::Output[src]

Performs the * operation. Read more

impl<T: AxisDimension> Neg for AxisDiff<T>[src]

type Output = Self

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl<T: Ord + AxisDimension> Ord for AxisDiff<T>[src]

fn cmp(&self, other: &AxisDiff<T>) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<T: AxisDimension, I: Into<AxisDiff<T>> + Copy> PartialEq<I> for AxisDiff<T>[src]

fn eq(&self, other: &I) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<T: AxisDimension, I: Into<AxisDiff<T>> + Copy> PartialOrd<I> for AxisDiff<T>[src]

fn partial_cmp(&self, other: &I) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: AxisDimension, I: Into<AxisDiff<T>>> Rem<I> for AxisDiff<T>[src]

type Output = Self

The resulting type after applying the % operator.

fn rem(self, modulus: I) -> Self[src]

Performs the % operation. Read more

impl<T: AxisDimension, I: Into<AxisDiff<T>>> Sub<I> for AxisDiff<T>[src]

type Output = Self

The resulting type after applying the - operator.

fn sub(self, rhs: I) -> Self[src]

Performs the - operation. Read more

impl<T: AxisDimension, I: Into<AxisDiff<T>>> SubAssign<I> for AxisDiff<T>[src]

fn sub_assign(&mut self, rhs: I)[src]

Performs the -= operation. Read more

impl<'a, T: 'a + AxisDimension + PartialOrd + Ord> Sum<&'a AxisDiff<T>> for AxisDiff<T>[src]

fn sum<I>(iter: I) -> Self where
    I: Iterator<Item = &'a Self>, 
[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl<T: AxisDimension + PartialOrd + Ord> Sum<AxisDiff<T>> for AxisDiff<T>[src]

fn sum<I>(iter: I) -> Self where
    I: Iterator<Item = Self>, 
[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl<T: Copy + AxisDimension> Copy for AxisDiff<T>[src]

impl<T: Eq + AxisDimension> Eq for AxisDiff<T>[src]

impl<T: AxisDimension> StructuralEq for AxisDiff<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for AxisDiff<T> where
    T: RefUnwindSafe

impl<T> Send for AxisDiff<T> where
    T: Send

impl<T> Sync for AxisDiff<T> where
    T: Sync

impl<T> Unpin for AxisDiff<T> where
    T: Unpin

impl<T> UnwindSafe for AxisDiff<T> where
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

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.

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

Performs the conversion.

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.

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

Performs the conversion.

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]