Trait test_fuzz_runtime::traits::Middle

source ·
pub trait Middle {
    // Required methods
    fn low() -> Self;
    fn high() -> Self;
}

Required Methods§

source

fn low() -> Self

source

fn high() -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Middle for T
where T: Add<Output = Self> + Div<Output = Self> + Bounded + One + Two,