Scored

Trait Scored 

Source
pub trait Scored<T> {
    // Required method
    fn score(&self) -> Option<T>;
}

Required Methods§

Source

fn score(&self) -> Option<T>

Implementations on Foreign Types§

Source§

impl<S, A: Scored<S>, B> Scored<S> for (A, B)

Source§

fn score(&self) -> Option<S>

Source§

impl<S, T: Scored<S>> Scored<S> for Option<T>

Source§

fn score(&self) -> Option<S>

Implementors§

Source§

impl Scored<f64> for Bed3

Source§

impl<'a> Scored<f64> for Bed4<'a>

Source§

impl<'a, T: Clone> Scored<T> for Bed5<'a, T>

Source§

impl<'a, T: Clone> Scored<T> for Bed6<'a, T>