Skip to main content

Convolutable

Trait Convolutable 

Source
pub trait Convolutable {
    // Required methods
    fn parts_len(&self) -> usize;
    fn part(&self, index: usize) -> &Expression;
}

Required Methods§

Source

fn parts_len(&self) -> usize

Source

fn part(&self, index: usize) -> &Expression

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Convolutable for Expression

Source§

fn parts_len(&self) -> usize

Source§

fn part(&self, _: usize) -> &Expression

Implementors§