Enum tfdeploy::matrix::Matrix [] [src]

pub enum Matrix {
    F32(ArrayD<f32>),
    F64(ArrayD<f64>),
    I32(ArrayD<i32>),
    I8(ArrayD<i8>),
    U8(ArrayD<u8>),
    String(ArrayD<i8>),
}

Variants

Methods

impl Matrix
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Matrix
[src]

[src]

[src]

[src]

impl Matrix
[src]

[src]

[src]

[src]

impl Matrix
[src]

[src]

[src]

[src]

impl Matrix
[src]

[src]

[src]

[src]

impl Matrix
[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for Matrix
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Matrix
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Matrix
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<D: Dimension> From<Array<f64, D>> for Matrix
[src]

[src]

Performs the conversion.

impl CastFrom<Matrix> for ArrayD<f64>
[src]

impl<D: Dimension> From<Array<f32, D>> for Matrix
[src]

[src]

Performs the conversion.

impl CastFrom<Matrix> for ArrayD<f32>
[src]

impl<D: Dimension> From<Array<i32, D>> for Matrix
[src]

[src]

Performs the conversion.

impl CastFrom<Matrix> for ArrayD<i32>
[src]

impl<D: Dimension> From<Array<u8, D>> for Matrix
[src]

[src]

Performs the conversion.

impl CastFrom<Matrix> for ArrayD<u8>
[src]

impl<D: Dimension> From<Array<i8, D>> for Matrix
[src]

[src]

Performs the conversion.

impl CastFrom<Matrix> for ArrayD<i8>
[src]

Auto Trait Implementations

impl Send for Matrix

impl Sync for Matrix