pub trait Condition<'a, C>where
C: Context<'a>,{
type Out<F>;
// Required method
fn set_cond<F>(self, if: F) -> Self::Out<F>
where F: NeuCond<'a, C>;
}pub trait Condition<'a, C>where
C: Context<'a>,{
type Out<F>;
// Required method
fn set_cond<F>(self, if: F) -> Self::Out<F>
where F: NeuCond<'a, C>;
}