[][src]Trait preexplorer::traits::Comparison

pub trait Comparison<T>: From<T> {
    fn add(&mut self, other: T) -> &mut Self;

    fn add_many<J: IntoIterator<Item = T>>(&mut self, others: J) -> &mut Self { ... }
}

Basic functions for comparisons of basic structs.

Required methods

fn add(&mut self, other: T) -> &mut Self

Add a basic struct to the comparison.

Loading content...

Provided methods

fn add_many<J: IntoIterator<Item = T>>(&mut self, others: J) -> &mut Self

Add many basic structs to the comparison.

Loading content...

Implementors

impl<T> Comparison<Density<T>> for Densities<T> where
    T: PartialOrd + Display + Clone
[src]

impl<T> Comparison<Sequence<T>> for Sequences<T> where
    T: Display + Clone
[src]

impl<T, S> Comparison<Process<T, S>> for Processes<T, S> where
    T: Display + Clone,
    S: Display + Clone
[src]

Loading content...