pub trait ElementSatisfy<ElementConstrain: ?Sized> {
    // Required methods
    fn to_constrain_object(&self) -> &ElementConstrain;
    fn to_constrain_object_mut(&mut self) -> &mut ElementConstrain;
}
Expand description

ElementConstrain is a trait that can be made into trait object where the tuple element satisfies.

Required Methods§

Implementors§

source§

impl<Item, TempGeneric: FallibleIterator<Item = Item, Error = Error>> ElementSatisfy<dyn FallibleIterator<Item = Item, Error = Error>> for TempGeneric

source§

impl<T> ElementSatisfy<ElementNoConstrain> for T