Trait faer::linalg::zip::ViewMut

source ·
pub trait ViewMut {
    type Target<'a>
       where Self: 'a;

    // Required method
    fn view_mut(&mut self) -> Self::Target<'_>;
}
Expand description

Type that can be converted to a view.

Required Associated Types§

source

type Target<'a> where Self: 'a

View type.

Required Methods§

source

fn view_mut(&mut self) -> Self::Target<'_>

Returns the view over self.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<E: Entity> ViewMut for &Col<E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &ColMut<'_, E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &ColRef<'_, E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &Mat<E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &MatMut<'_, E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &MatRef<'_, E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &Row<E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &RowMut<'_, E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &RowRef<'_, E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut Col<E>

§

type Target<'a> = ColMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut ColMut<'_, E>

§

type Target<'a> = ColMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut ColRef<'_, E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut Mat<E>

§

type Target<'a> = MatMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut MatMut<'_, E>

§

type Target<'a> = MatMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut MatRef<'_, E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut Row<E>

§

type Target<'a> = RowMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut RowMut<'_, E>

§

type Target<'a> = RowMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for &mut RowRef<'_, E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for Col<E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for ColMut<'_, E>

§

type Target<'a> = ColMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for ColRef<'_, E>

§

type Target<'a> = ColRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for Mat<E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for MatMut<'_, E>

§

type Target<'a> = MatMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for MatRef<'_, E>

§

type Target<'a> = MatRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for Row<E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for RowMut<'_, E>

§

type Target<'a> = RowMut<'a, E> where Self: 'a

source§

impl<E: Entity> ViewMut for RowRef<'_, E>

§

type Target<'a> = RowRef<'a, E> where Self: 'a