Struct faer::sparse::SparseRowMatMut

source ·
pub struct SparseRowMatMut<'a, I: Index, E: Entity> { /* private fields */ }
Expand description

Sparse matrix view in column-major format, either compressed or uncompressed.

Implementations§

source§

impl<'a, I: Index, E: Entity> SparseRowMatMut<'a, I, E>

source

pub fn new( symbolic: SymbolicSparseRowMatRef<'a, I>, values: GroupFor<E, &'a mut [E::Unit]> ) -> Self

Creates a new sparse matrix view.

§Panics

Panics if the length of values is not equal to the length of symbolic.col_indices().

source

pub fn nrows(&self) -> usize

Returns the number of rows of the matrix.

source

pub fn ncols(&self) -> usize

Returns the number of columns of the matrix.

source

pub fn shape(&self) -> (usize, usize)

Returns the number of rows and columns of the matrix.

source

pub fn as_ref(&self) -> SparseRowMatRef<'_, I, E>

Returns a view over self.

source

pub fn as_mut(&mut self) -> SparseRowMatMut<'_, I, E>

Returns a mutable view over self.

Note that the symbolic structure cannot be changed through this view.

source

pub fn to_owned(&self) -> Result<SparseRowMat<I, E::Canonical>, FaerError>

Copies self into a newly allocated matrix.

§Note

Allows unsorted matrices, producing an unsorted output.

source

pub fn to_sorted(&self) -> Result<SparseRowMat<I, E::Canonical>, FaerError>

Copies self into a newly allocated matrix with sorted indices.

§Note

Allows unsorted matrices, producing a sorted output.

source

pub fn to_dense(&self) -> Mat<E::Canonical>

Copies self into a newly allocated dense matrix

source

pub fn to_col_major(&self) -> Result<SparseColMat<I, E::Canonical>, FaerError>

Copies self into a newly allocated matrix, with column-major order.

§Note

Allows unsorted matrices, producing a sorted output.

source

pub fn transpose(self) -> SparseColMatRef<'a, I, E>

Returns a view over the transpose of self in column-major format.

source

pub fn transpose_mut(self) -> SparseColMatMut<'a, I, E>

Returns a view over the transpose of self in column-major format.

source

pub fn canonicalize(self) -> (SparseRowMatRef<'a, I, E::Canonical>, Conj)
where E: Conjugate,

Returns a view over the canonical view of self, along with whether it has been conjugated or not.

source

pub fn canonicalize_mut(self) -> (SparseRowMatMut<'a, I, E::Canonical>, Conj)
where E: Conjugate,

Returns a view over the canonical view of self, along with whether it has been conjugated or not.

source

pub fn conjugate(self) -> SparseRowMatRef<'a, I, E::Conj>
where E: Conjugate,

Returns a view over the conjugate of self.

source

pub fn conjugate_mut(self) -> SparseRowMatMut<'a, I, E::Conj>
where E: Conjugate,

Returns a view over the conjugate of self.

source

pub fn adjoint(self) -> SparseColMatRef<'a, I, E::Conj>
where E: Conjugate,

Returns a view over the conjugate transpose of self.

source

pub fn adjoint_mut(self) -> SparseColMatMut<'a, I, E::Conj>
where E: Conjugate,

Returns a view over the conjugate transpose of self.

source

pub fn values(self) -> GroupFor<E, &'a [E::Unit]>

Returns the numerical values of the matrix.

source

pub fn values_mut(self) -> GroupFor<E, &'a mut [E::Unit]>

Returns the numerical values of the matrix.

source

pub fn values_of_row(self, i: usize) -> GroupFor<E, &'a [E::Unit]>

Returns the numerical values of row i of the matrix.

§Panics:

Panics if i >= nrows.

source

pub fn values_of_row_mut(self, i: usize) -> GroupFor<E, &'a mut [E::Unit]>

Returns the numerical values of row i of the matrix.

§Panics:

Panics if i >= nrows.

source

pub fn symbolic(&self) -> SymbolicSparseRowMatRef<'a, I>

Returns the symbolic structure of the matrix.

source

pub fn parts( self ) -> (SymbolicSparseRowMatRef<'a, I>, GroupFor<E, &'a [E::Unit]>)

Decomposes the matrix into the symbolic part and the numerical values.

source

pub fn parts_mut( self ) -> (SymbolicSparseRowMatRef<'a, I>, GroupFor<E, &'a mut [E::Unit]>)

Decomposes the matrix into the symbolic part and the numerical values.

source

pub fn compute_nnz(&self) -> usize

Returns the number of symbolic non-zeros in the matrix.

The value is guaranteed to be less than I::Signed::MAX.

§Note

Allows unsorted matrices, but the output is a count of all the entries, including the duplicate ones.

source

pub fn row_ptrs(&self) -> &'a [I]

Returns the column pointers.

source

pub fn nnz_per_row(&self) -> Option<&'a [I]>

Returns the count of non-zeros per column of the matrix.

source

pub fn col_indices(&self) -> &'a [I]

Returns the column indices.

source

pub fn col_indices_of_row_raw(&self, i: usize) -> &'a [I]

Returns the column indices of row i.

§Panics

Panics if i >= self.nrows().

source

pub fn col_indices_of_row( &self, i: usize ) -> impl 'a + ExactSizeIterator + DoubleEndedIterator<Item = usize>

Returns the column indices of row i.

§Panics

Panics if i >= self.ncols().

source

pub fn row_range(&self, i: usize) -> Range<usize>

Returns the range that the row i occupies in self.col_indices().

§Panics

Panics if i >= self.nrows().

source

pub unsafe fn row_range_unchecked(&self, i: usize) -> Range<usize>

Returns the range that the row i occupies in self.col_indices().

§Safety

The behavior is undefined if i >= self.nrows().

source

pub fn get(self, row: usize, col: usize) -> Option<GroupFor<E, &'a E::Unit>>

Returns a reference to the value at the given index, or None if the symbolic structure doesn’t contain it, or contains multiple values with the given index.

§Panics

Panics if row >= self.nrows().
Panics if col >= self.ncols().

source

pub fn get_mut( self, row: usize, col: usize ) -> Option<GroupFor<E, &'a mut E::Unit>>

Returns a reference to the value at the given index, or None if the symbolic structure doesn’t contain it, or contains multiple values with the given index.

§Panics

Panics if row >= self.nrows()
Panics if col >= self.ncols()

source

pub fn get_all(self, row: usize, col: usize) -> GroupFor<E, &'a [E::Unit]>

Returns a reference to a slice containing the values at the given index using a binary search.

§Panics

Panics if row >= self.nrows().
Panics if col >= self.ncols().

source

pub fn get_all_mut( self, row: usize, col: usize ) -> GroupFor<E, &'a mut [E::Unit]>

Returns a reference to a slice containing the values at the given index using a binary search.

§Panics

Panics if row >= self.nrows().
Panics if col >= self.ncols().

source§

impl<I: Index, E: ComplexField> SparseRowMatMut<'_, I, E>

source

pub fn fill_from_order_and_values( &mut self, order: &ValuesOrder<I>, values: GroupFor<E, &[E::Unit]>, mode: FillMode )

Fill the matrix from a previously created value order. The provided values must correspond to the same indices that were provided in the function call from which the order was created.

§Note

The symbolic structure is not changed.

source§

impl<I: Index, E: ComplexField> SparseRowMatMut<'_, I, E>

source

pub fn sp_solve_lower_triangular_in_place(&self, rhs: impl ColBatchMut<E>)

Assuming self is an upper triangular matrix, solves the equation self * X = rhs, and stores the result in rhs.

§Note

The matrix indices need not be sorted, but the diagonal element is assumed to be the last stored element in each row.

source

pub fn sp_solve_upper_triangular_in_place(&self, rhs: impl ColBatchMut<E>)

Assuming self is an upper triangular matrix, solves the equation self * X = rhs, and stores the result in rhs.

§Note

The matrix indices need not be sorted, but the diagonal element is assumed to be the first stored element in each row.

source

pub fn sp_solve_unit_lower_triangular_in_place(&self, rhs: impl ColBatchMut<E>)

Assuming self is a unit lower triangular matrix, solves the equation self * X = rhs, and stores the result in rhs.

§Note

The matrix indices need not be sorted, but the diagonal element is assumed to be the last stored element in each row.

source

pub fn sp_solve_unit_upper_triangular_in_place(&self, rhs: impl ColBatchMut<E>)

Assuming self is a unit upper triangular matrix, solves the equation self * X = rhs, and stores the result in rhs.

§Note

The matrix indices need not be sorted, but the diagonal element is assumed to be the first stored element in each row.

source

pub fn sp_cholesky(&self, side: Side) -> Result<Cholesky<I, E>, CholeskyError>

Returns the Cholesky decomposition of self. Only the provided side is accessed.

source

pub fn sp_lu(&self) -> Result<Lu<I, E>, LuError>

Returns the LU decomposition of self with partial (row) pivoting.

source

pub fn sp_qr(&self) -> Result<Qr<I, E>, FaerError>

Returns the QR decomposition of self.

Trait Implementations§

source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<&SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the + operator.
source§

fn add(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<&SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: &SparseRowMat<I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

source§

fn add_assign(&mut self, other: &SparseRowMatMut<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: &SparseRowMatMut<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<&SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: &SparseRowMatRef<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: SparseRowMat<I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

source§

fn add_assign(&mut self, other: SparseRowMatMut<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: SparseRowMatMut<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn add_assign(&mut self, other: SparseRowMatRef<'_, I, RhsE>)

Performs the += operation. Read more
source§

impl<E: ComplexField, I: Index, ViewE: Conjugate<Canonical = E>> BiLinOp<E> for SparseRowMatMut<'_, I, ViewE>

Available on crate feature unstable only.
source§

fn transpose_apply_req( &self, rhs_ncols: usize, parallelism: Parallelism<'_> ) -> Result<StackReq, SizeOverflow>

Computes the workspace size and alignment required to apply the transpose or adjoint of self to a matrix with rhs_ncols columns.
source§

fn transpose_apply( &self, out: MatMut<'_, E>, rhs: MatRef<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the transpose of self to rhs, and stores the result in out.
source§

fn adjoint_apply( &self, out: MatMut<'_, E>, rhs: MatRef<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the adjoint of self to rhs, and stores the result in out.
source§

impl<E: ComplexField, I: Index, ViewE: Conjugate<Canonical = E>> BiPrecond<E> for SparseRowMatMut<'_, I, ViewE>

Available on crate feature unstable only.
source§

fn transpose_apply_in_place_req( &self, rhs_ncols: usize, parallelism: Parallelism<'_> ) -> Result<StackReq, SizeOverflow>

Computes the workspace size and alignment required to apply the transpose or adjoint of self to a matrix with rhs_ncols columns in place.
source§

fn transpose_apply_in_place( &self, rhs: MatMut<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the transpose of self to rhs, and stores the result in rhs.
source§

fn adjoint_apply_in_place( &self, rhs: MatMut<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the adjoint of self to rhs, and stores the result in rhs.
source§

impl<I: Index, E: Entity> Debug for SparseRowMatMut<'_, I, E>

source§

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

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

impl<I: Index, E: SimpleEntity> Index<(usize, usize)> for SparseRowMatMut<'_, I, E>

§

type Output = E

The returned type after indexing.
source§

fn index(&self, (row, col): (usize, usize)) -> &Self::Output

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

impl<I: Index, E: SimpleEntity> IndexMut<(usize, usize)> for SparseRowMatMut<'_, I, E>

source§

fn index_mut(&mut self, (row, col): (usize, usize)) -> &mut Self::Output

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

impl<'a, I: Index, E: Entity> IntoConst for SparseRowMatMut<'a, I, E>

§

type Target = SparseRowMatRef<'a, I, E>

source§

fn into_const(self) -> Self::Target

source§

impl<E: ComplexField, I: Index, ViewE: Conjugate<Canonical = E>> LinOp<E> for SparseRowMatMut<'_, I, ViewE>

Available on crate feature unstable only.
source§

fn nrows(&self) -> usize

Output dimension of the operator.
source§

fn ncols(&self) -> usize

Input dimension of the operator.
source§

fn apply_req( &self, rhs_ncols: usize, parallelism: Parallelism<'_> ) -> Result<StackReq, SizeOverflow>

Computes the workspace size and alignment required to apply self or the conjugate of self to a matrix with rhs_ncols columns.
source§

fn apply( &self, out: MatMut<'_, E>, rhs: MatRef<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies self to rhs, and stores the result in out.
source§

fn conj_apply( &self, out: MatMut<'_, E>, rhs: MatRef<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the conjugate of self to rhs, and stores the result in out.
source§

impl<I: Index, E: Entity> Matrix<E> for SparseRowMatMut<'_, I, E>

Available on crate feature std only.
source§

fn rows(&self) -> usize

source§

fn cols(&self) -> usize

source§

fn access(&self) -> Access<'_, E>

Expose dense or sparse access to the matrix.
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Col<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Col<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColMut<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColMut<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColRef<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColRef<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Mat<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Mat<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatMut<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatMut<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatRef<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatRef<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Col<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Col<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColMut<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColMut<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColRef<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColRef<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Mat<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Mat<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatMut<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatMut<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatRef<'_, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatRef<'_, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: Conjugate> Neg for &SparseRowMatMut<'_, I, E>

§

type Output = SparseRowMat<I, <E as Conjugate>::Canonical>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl<I: Index, E: Conjugate> Neg for SparseRowMatMut<'_, I, E>

§

type Output = SparseRowMat<I, <E as Conjugate>::Canonical>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl<I: Index, LhsE: Conjugate, RhsE: Conjugate<Canonical = LhsE::Canonical>> PartialEq<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn eq(&self, other: &SparseRowMat<I, RhsE>) -> 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<I: Index, LhsE: Conjugate, RhsE: Conjugate<Canonical = LhsE::Canonical>> PartialEq<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

source§

fn eq(&self, other: &SparseRowMatMut<'_, I, RhsE>) -> 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<I: Index, LhsE: Conjugate, RhsE: Conjugate<Canonical = LhsE::Canonical>> PartialEq<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn eq(&self, other: &SparseRowMatMut<'_, I, RhsE>) -> 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<I: Index, LhsE: Conjugate, RhsE: Conjugate<Canonical = LhsE::Canonical>> PartialEq<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

source§

fn eq(&self, other: &SparseRowMatMut<'_, I, RhsE>) -> 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<I: Index, LhsE: Conjugate, RhsE: Conjugate<Canonical = LhsE::Canonical>> PartialEq<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn eq(&self, other: &SparseRowMatRef<'_, I, RhsE>) -> 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<E: ComplexField, I: Index, ViewE: Conjugate<Canonical = E>> Precond<E> for SparseRowMatMut<'_, I, ViewE>

Available on crate feature unstable only.
source§

fn apply_in_place_req( &self, rhs_ncols: usize, parallelism: Parallelism<'_> ) -> Result<StackReq, SizeOverflow>

Computes the workspace size and alignment required to apply self or the conjugate of self to a matrix with rhs_ncols columns in place.
source§

fn apply_in_place( &self, rhs: MatMut<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies self to rhs, and stores the result in rhs.
source§

fn conj_apply_in_place( &self, rhs: MatMut<'_, E>, parallelism: Parallelism<'_>, stack: PodStack<'_> )

Applies the conjugate of self to rhs, and stores the result in rhs.
source§

impl<'short, I: Index, E: Entity> Reborrow<'short> for SparseRowMatMut<'_, I, E>

§

type Target = SparseRowMatRef<'short, I, E>

source§

fn rb(&'short self) -> Self::Target

source§

impl<'short, I: Index, E: Entity> ReborrowMut<'short> for SparseRowMatMut<'_, I, E>

§

type Target = SparseRowMatMut<'short, I, E>

source§

fn rb_mut(&'short mut self) -> Self::Target

source§

impl<I: Index, E: Entity> SparseAccess<E> for SparseRowMatMut<'_, I, E>

Available on crate feature std only.
source§

fn nnz(&self) -> usize

Number of non-zero elements in the matrix.
source§

fn fetch_triplets(&self) -> Vec<(usize, usize, E)>

Retrieve the triplets that identify the coefficients of the sparse matrix.
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<&SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMat<I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatRef<'_, I, RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the - operator.
source§

fn sub(self, other: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<&SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: &SparseRowMat<I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

source§

fn sub_assign(&mut self, other: &SparseRowMatMut<'_, I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<&SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: &SparseRowMatMut<'_, I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<&SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: &SparseRowMatRef<'_, I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<SparseRowMat<I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: SparseRowMat<I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<SparseRowMatMut<'_, I, RhsE>> for SparseRowMat<I, LhsE>

source§

fn sub_assign(&mut self, other: SparseRowMatMut<'_, I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<SparseRowMatMut<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: SparseRowMatMut<'_, I, RhsE>)

Performs the -= operation. Read more
source§

impl<I: Index, LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<SparseRowMatRef<'_, I, RhsE>> for SparseRowMatMut<'_, I, LhsE>

source§

fn sub_assign(&mut self, other: SparseRowMatRef<'_, I, RhsE>)

Performs the -= operation. Read more

Auto Trait Implementations§

§

impl<'a, I, E> Freeze for SparseRowMatMut<'a, I, E>
where <<E as Entity>::Group as ForType>::FaerOf<*mut [<E as Entity>::Unit]>: Freeze,

§

impl<'a, I, E> RefUnwindSafe for SparseRowMatMut<'a, I, E>
where <<E as Entity>::Group as ForType>::FaerOf<*mut [<E as Entity>::Unit]>: RefUnwindSafe, I: RefUnwindSafe,

§

impl<'a, I, E> Send for SparseRowMatMut<'a, I, E>

§

impl<'a, I, E> Sync for SparseRowMatMut<'a, I, E>

§

impl<'a, I, E> Unpin for SparseRowMatMut<'a, I, E>
where <<E as Entity>::Group as ForType>::FaerOf<*mut [<E as Entity>::Unit]>: Unpin,

§

impl<'a, I, E> !UnwindSafe for SparseRowMatMut<'a, I, E>

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. 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.
source§

impl<T> UniversalReborrow for T
where T: for<'a> Reborrow<'a>,

source§

impl<T> UniversalReborrowMut for T
where T: for<'a> ReborrowMut<'a>,