Trait Any

Source
pub trait Any: ValueGenerator {
    // Required method
    fn any(&self) -> Self::Output;
}

Required Methods§

Source

fn any(&self) -> Self::Output

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<G> Any for G
where G: 'static + ValueGenerator,