[]Struct prototty_unix::Size

pub struct Size { /* fields omitted */ }

A size cannot be created which would contain un-addressable cells. That is, the maximum size has a width and height of one greater than the maximum i32.

Methods

impl Size

pub fn try_new(
    width: u32,
    height: u32
) -> Result<Size, DimensionTooLargeForSize>

pub fn new(width: u32, height: u32) -> Size

Creates a new Size. Panics if width or width is greater than ::std::i32::MAX as u32 + 1.

pub const fn new_u16(width: u16, height: u16) -> Size

Like new, but const and never panics as it's impossible to construct an invalid size

pub fn from_coord(coord: Coord) -> Result<Size, NegativeDimension>

pub fn to_coord(self) -> Result<Coord, DimensionTooLargeForCoord>

pub fn get(self, axis: Axis) -> u32

pub fn get_mut(&mut self, axis: Axis) -> &mut u32

pub fn with_axis<F>(self, axis: Axis, f: F) -> Size where
    F: FnMut(u32) -> u32

pub fn try_set(
    self,
    axis: Axis,
    value: u32
) -> Result<Size, DimensionTooLargeForSize>

pub fn set(self, axis: Axis, value: u32) -> Size

pub fn try_set_in_place(
    &mut self,
    axis: Axis,
    value: u32
) -> Result<(), DimensionTooLargeForSize>

pub fn set_in_place(&mut self, axis: Axis, value: u32)

pub fn try_new_axis(
    this_axis: u32,
    other_axis: u32,
    axis: Axis
) -> Result<Size, DimensionTooLargeForSize>

pub fn new_axis(this_axis: u32, other_axis: u32, axis: Axis) -> Size

pub fn get_static<A>(self) -> u32 where
    A: StaticAxis, 

pub fn get_static_mut<A>(&mut self) -> &mut u32 where
    A: StaticAxis, 

pub fn with_static_axis<A, F>(self, f: F) -> Size where
    A: StaticAxis,
    F: FnMut(u32) -> u32

pub fn try_set_static<A>(
    self,
    value: u32
) -> Result<Size, DimensionTooLargeForSize> where
    A: StaticAxis, 

pub fn try_set_static_in_place<A>(
    &mut self,
    value: u32
) -> Result<(), DimensionTooLargeForSize> where
    A: StaticAxis, 

pub fn set_static<A>(self, value: u32) -> Size where
    A: StaticAxis, 

pub fn set_static_in_place<A>(&mut self, value: u32) where
    A: StaticAxis, 

pub fn try_new_static_axis<A>(
    this_axis: u32,
    other_axis: u32
) -> Result<Size, DimensionTooLargeForSize> where
    A: StaticAxis, 

pub fn new_static_axis<A>(this_axis: u32, other_axis: u32) -> Size where
    A: StaticAxis, 

pub fn width(self) -> u32

Returns the width.

pub fn x(self) -> u32

Alias for width.

pub fn height(self) -> u32

Returns the height.

pub fn y(self) -> u32

Alias for height.

pub fn count(self) -> usize

Return the number of cells in a 2D grid of this size.

pub fn checked_sub(self, rhs: Size) -> Option<Size>

pub fn saturating_sub(self, rhs: Size) -> Size

Trait Implementations

impl Copy for Size

impl Eq for Size

impl<'a, 'b> Sub<&'a Size> for &'b Coord

type Output = Coord

The resulting type after applying the - operator.

impl<'a> Sub<&'a Coord> for Size

type Output = Coord

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a Coord> for &'b Size

type Output = Coord

The resulting type after applying the - operator.

impl<'a> Sub<&'a Size> for Coord

type Output = Coord

The resulting type after applying the - operator.

impl<'a> Sub<Size> for &'a Size

type Output = Size

The resulting type after applying the - operator.

impl Sub<Coord> for Size

type Output = Coord

The resulting type after applying the - operator.

impl<'a> Sub<Size> for &'a Coord

type Output = Coord

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a Size> for &'b Size

type Output = Size

The resulting type after applying the - operator.

impl Sub<Size> for Coord

type Output = Coord

The resulting type after applying the - operator.

impl<'a> Sub<&'a Size> for Size

type Output = Size

The resulting type after applying the - operator.

impl<'a> Sub<Coord> for &'a Size

type Output = Coord

The resulting type after applying the - operator.

impl Sub<Size> for Size

type Output = Size

The resulting type after applying the - operator.

impl Default for Size

impl PartialEq<Size> for Size

impl Mul<u32> for Size

type Output = Size

The resulting type after applying the * operator.

impl<'a> Mul<u32> for &'a Size

type Output = Size

The resulting type after applying the * operator.

impl<T> DivAssign<T> for Size where
    Size: Div<T>,
    <Size as Div<T>>::Output == Size

impl Div<u32> for Size

type Output = Size

The resulting type after applying the / operator.

impl<'a> Div<u32> for &'a Size

type Output = Size

The resulting type after applying the / operator.

impl<T> MulAssign<T> for Size where
    Size: Mul<T>,
    <Size as Mul<T>>::Output == Size

impl Hash for Size

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for Size

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

Performs copy-assignment from source. Read more

impl<'a, 'b> Add<&'a Coord> for &'b Size

type Output = Coord

The resulting type after applying the + operator.

impl Add<Size> for Coord

type Output = Coord

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a Size> for &'b Coord

type Output = Coord

The resulting type after applying the + operator.

impl<'a> Add<&'a Size> for Size

type Output = Size

The resulting type after applying the + operator.

impl<'a> Add<Size> for &'a Size

type Output = Size

The resulting type after applying the + operator.

impl Add<Coord> for Size

type Output = Coord

The resulting type after applying the + operator.

impl<'a> Add<Coord> for &'a Size

type Output = Coord

The resulting type after applying the + operator.

impl Add<Size> for Size

type Output = Size

The resulting type after applying the + operator.

impl<'a> Add<Size> for &'a Coord

type Output = Coord

The resulting type after applying the + operator.

impl<'a> Add<&'a Coord> for Size

type Output = Coord

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a Size> for &'b Size

type Output = Size

The resulting type after applying the + operator.

impl<'a> Add<&'a Size> for Coord

type Output = Coord

The resulting type after applying the + operator.

impl PartialOrd<Size> for Size

impl From<(u32, u32)> for Size

impl From<[u32; 2]> for Size

impl Ord for Size

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

Compares and returns the maximum of two values. Read more

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

Compares and returns the minimum of two values. Read more

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

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

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl Debug for Size

Auto Trait Implementations

impl Send for Size

impl Sync for Size

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.