Enum MatrixLocation

Source
pub enum MatrixLocation {
    Row(usize),
    Col(usize),
    Coordinates(MatrixCoordinates),
    Range(MatrixRange),
}
Expand description

Location in a 2D matrix.

Variants§

§

Row(usize)

Entire row in a matrix.

§

Col(usize)

Entire column in a matrix.

§

Coordinates(MatrixCoordinates)

Specific coordinates in a matrix.

§

Range(MatrixRange)

2D area in a matrix.

Implementations§

Source§

impl MatrixLocation

Source

pub fn from_coords(row: Option<usize>, col: Option<usize>) -> Option<Self>

Create a new optional location from an optional row and column coordinate.

Source

pub fn row(&self) -> Option<usize>

Row or starting row of this location.

Source

pub fn col(&self) -> Option<usize>

Column or starting column of this location.

Trait Implementations§

Source§

impl Add<MatrixCoordinates> for MatrixLocation

Source§

type Output = MatrixLocation

The resulting type after applying the + operator.
Source§

fn add(self, rhs: MatrixCoordinates) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for MatrixLocation

Source§

type Output = MatrixLocation

The resulting type after applying the + operator.
Source§

fn add(self, rhs: MatrixLocation) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<MatrixCoordinates> for MatrixLocation

Source§

fn add_assign(&mut self, rhs: MatrixCoordinates)

Performs the += operation. Read more
Source§

impl AddAssign for MatrixLocation

Source§

fn add_assign(&mut self, rhs: MatrixLocation)

Performs the += operation. Read more
Source§

impl Clone for MatrixLocation

Source§

fn clone(&self) -> MatrixLocation

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

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

Performs copy-assignment from source. Read more
Source§

impl Debug for MatrixLocation

Source§

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

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

impl Default for MatrixLocation

Source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for MatrixLocation

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 Domain2D for MatrixLocation

Source§

fn row_range(&self) -> Range<usize>

Range of rows included in this object’s domain.
Source§

fn col_range(&self) -> Range<usize>

Range of columns included in this object’s domain.
Source§

fn range(&self) -> MatrixRange

The area spanned by this domain.
Source§

fn start(&self) -> MatrixCoordinates

Starting coordinate of this domain (inclusive).
Source§

fn end(&self) -> MatrixCoordinates

Ending coordinate of this domain (exclusive).
Source§

fn middle(&self) -> (f64, f64)

The middle point of this cluster as a tuple of (rows, columns), fractional.
Source§

impl From<MatrixCoordinates> for MatrixLocation

Source§

fn from(value: MatrixCoordinates) -> Self

Converts to this type from the input type.
Source§

impl From<MatrixRange> for MatrixLocation

Source§

fn from(value: MatrixRange) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for MatrixLocation

Source§

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

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

const 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 Serialize for MatrixLocation

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 Sub<MatrixCoordinates> for MatrixLocation

Source§

type Output = MatrixLocation

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: MatrixCoordinates) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for MatrixLocation

Source§

type Output = MatrixLocation

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: MatrixLocation) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<MatrixCoordinates> for MatrixLocation

Source§

fn sub_assign(&mut self, rhs: MatrixCoordinates)

Performs the -= operation. Read more
Source§

impl SubAssign for MatrixLocation

Source§

fn sub_assign(&mut self, rhs: MatrixLocation)

Performs the -= operation. Read more
Source§

impl Copy for MatrixLocation

Source§

impl StructuralPartialEq for MatrixLocation

Auto Trait Implementations§

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<D, T> Contains2D<D> for T
where D: Domain2D, T: Domain2D,

Source§

fn contains(&self, other: &D) -> bool

Whether this instance contains or covers the other.
Source§

fn overlaps(&self, other: &D) -> bool

Whether this instance overlaps the other.
Source§

impl<T> Contains2D<MatrixCoordinates> for T
where T: Domain2D,

Source§

fn contains(&self, other: &MatrixCoordinates) -> bool

Whether this instance contains or covers the other.
Source§

fn overlaps(&self, other: &T) -> bool

Whether this instance overlaps the other.
Source§

impl<D> Dimensions2D for D
where D: Domain2D,

Source§

fn n_rows(&self) -> usize

Number of rows in the output.
Source§

fn n_cols(&self) -> usize

Number of columns in the output.
Source§

fn dimensions(&self) -> MatrixDimensions

Dimensions of the output as a dimensions object.
Source§

fn len(&self) -> usize

Length of these dimensions if it were a 1D vector.
Source§

fn is_empty(&self) -> bool

Whether these dimensions are (0,0).
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, 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>,