Trait acme_graphs::ops::Operator

source ·
pub trait Operator {
    // Required method
    fn name(&self) -> String;

    // Provided method
    fn boxed(self) -> Box<dyn Operator>
       where Self: Sized + 'static { ... }
}

Required Methods§

source

fn name(&self) -> String

Provided Methods§

source

fn boxed(self) -> Box<dyn Operator>
where Self: Sized + 'static,

Trait Implementations§

source§

impl Operator for Box<dyn Operator>

source§

fn name(&self) -> String

source§

fn boxed(self) -> Box<dyn Operator>
where Self: Sized + 'static,

Implementations on Foreign Types§

source§

impl Operator for Box<dyn Operator>

source§

fn name(&self) -> String

Implementors§