Display

Trait Display 

Source
pub trait Display {
    // Required methods
    fn print(&self);
    fn print_data_recursive<'a>(
        data: &'a [f32],
        shape: &'a [usize],
        stride: &'a [usize],
    ) -> String;
    fn print_data(&self);
}

Required Methods§

Source

fn print(&self)

Source

fn print_data_recursive<'a>( data: &'a [f32], shape: &'a [usize], stride: &'a [usize], ) -> String

Source

fn print_data(&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§