Struct term_model::index::Point

source ·
pub struct Point<L = Line> {
    pub line: L,
    pub col: Column,
}
Expand description

Index in the grid using row, column notation

Fields§

§line: L§col: Column

Implementations§

source§

impl<L> Point<L>

source

pub fn new(line: L, col: Column) -> Point<L>

source

pub fn sub( self, num_cols: usize, length: usize, absolute_indexing: bool ) -> Point<L>
where L: Copy + Add<usize, Output = L> + Sub<usize, Output = L>,

source

pub fn add( self, num_cols: usize, length: usize, absolute_indexing: bool ) -> Point<L>
where L: Copy + Add<usize, Output = L> + Sub<usize, Output = L>,

Trait Implementations§

source§

impl<L: Clone> Clone for Point<L>

source§

fn clone(&self) -> Point<L>

Returns a copy 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<L: Debug> Debug for Point<L>

source§

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

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

impl<L: Default> Default for Point<L>

source§

fn default() -> Point<L>

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

impl From<Point<isize>> for Point<usize>

source§

fn from(point: Point<isize>) -> Self

Converts to this type from the input type.
source§

impl From<Point<usize>> for Point<Line>

source§

fn from(point: Point<usize>) -> Self

Converts to this type from the input type.
source§

impl From<Point<usize>> for Point<isize>

source§

fn from(point: Point<usize>) -> Self

Converts to this type from the input type.
source§

impl From<Point> for Point<usize>

source§

fn from(point: Point) -> Self

Converts to this type from the input type.
source§

impl From<RenderableCell> for Point<Line>

source§

fn from(cell: RenderableCell) -> Self

Converts to this type from the input type.
source§

impl<'point, T> Index<&'point Point> for Grid<T>

§

type Output = T

The returned type after indexing.
source§

fn index<'a>(&'a self, point: &Point) -> &'a T

Performs the indexing (container[index]) operation. Read more
source§

impl<'point, T> IndexMut<&'point Point> for Grid<T>

source§

fn index_mut<'a, 'b>(&'a mut self, point: &'b Point) -> &'a mut T

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Ord for Point

source§

fn cmp(&self, other: &Point) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<L: PartialEq> PartialEq for Point<L>

source§

fn eq(&self, other: &Point<L>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<L: PartialOrd> PartialOrd for Point<L>

source§

fn partial_cmp(&self, other: &Point<L>) -> Option<Ordering>

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

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

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

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

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

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

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

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

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

impl<L: Copy> Copy for Point<L>

source§

impl<L: Eq> Eq for Point<L>

source§

impl<L> StructuralPartialEq for Point<L>

Auto Trait Implementations§

§

impl<L> Freeze for Point<L>
where L: Freeze,

§

impl<L> RefUnwindSafe for Point<L>
where L: RefUnwindSafe,

§

impl<L> Send for Point<L>
where L: Send,

§

impl<L> Sync for Point<L>
where L: Sync,

§

impl<L> Unpin for Point<L>
where L: Unpin,

§

impl<L> UnwindSafe for Point<L>
where L: 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> 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,

§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.