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

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

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.

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

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

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

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

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

type Output = AxisDiff<T>

The resulting type after applying the / operator.

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

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

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

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

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

type Output = Self

The resulting type after applying the * operator.

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

type Output = Self

The resulting type after applying the - operator.

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

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

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

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

type Output = Self

The resulting type after applying the % operator.

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

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

type Output = Self

The resulting type after applying the - operator.

impl<T: AxisDimension, I: Into<AxisDiff<T>>> SubAssign<I> 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]

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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, 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.