Triggerable

Trait Triggerable 

Source
pub trait Triggerable {
    type Item: Clone;

    // Required method
    fn into_sig<T>(self, trig: T) -> impl SigT<Item = Self::Item>
       where T: SigT<Item = bool>;
}

Required Associated Types§

Required Methods§

Source

fn into_sig<T>(self, trig: T) -> impl SigT<Item = Self::Item>
where T: SigT<Item = bool>,

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§