Trait savory_elements::traits::ExtendBuilder[][src]

pub trait ExtendBuilder<A> {
    fn extend<T>(self, iter: T) -> Self
    where
        T: IntoIterator<Item = A>
; }

Similar to Extend in standard library for builder like types.

used mostly with views that containes multiple items such as Flex

Required methods

fn extend<T>(self, iter: T) -> Self where
    T: IntoIterator<Item = A>, 
[src]

Loading content...

Implementors

impl<U, Msg> ExtendBuilder<U> for Flex<Msg> where
    U: Into<Item<Msg>>, 
[src]

Loading content...