WithTransposeArguments

Trait WithTransposeArguments 

Source
pub trait WithTransposeArguments {
    // Required methods
    fn with_negated_transpose_first_argument(&self) -> Self;
    fn with_negated_transpose_second_argument(&self) -> Self;
    fn with_transpose_first_argument(
        &self,
        transpose_matrix_argument: bool,
    ) -> Self;
    fn with_transpose_second_argument(
        &self,
        transpose_matrix_argument: bool,
    ) -> Self;
    fn with_transpose_matrix_arguments(
        &self,
        transpose_first_matrix_argument: bool,
        transpose_second_matrix_argument: bool,
    ) -> Self;
}

Required Methods§

Source

fn with_negated_transpose_first_argument(&self) -> Self

Source

fn with_negated_transpose_second_argument(&self) -> Self

Source

fn with_transpose_first_argument(&self, transpose_matrix_argument: bool) -> Self

Source

fn with_transpose_second_argument( &self, transpose_matrix_argument: bool, ) -> Self

Source

fn with_transpose_matrix_arguments( &self, transpose_first_matrix_argument: bool, transpose_second_matrix_argument: bool, ) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§