Trait ArgReduceArgs

Source
pub trait ArgReduceArgs: Debug {
    // Required method
    fn dim(&self) -> &impl Dim;

    // Provided method
    fn keep_dim(&self) -> bool { ... }
}

Required Methods§

Source

fn dim(&self) -> &impl Dim

Provided Methods§

Source

fn keep_dim(&self) -> bool

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.

Implementations on Foreign Types§

Source§

impl<T: Dim> ArgReduceArgs for (T, bool)

Source§

fn dim(&self) -> &impl Dim

Source§

fn keep_dim(&self) -> bool

Implementors§

Source§

impl<T: Dim> ArgReduceArgs for T