CanAttachMany

Trait CanAttachMany 

Source
pub trait CanAttachMany<B, I, C> {
    // Required method
    fn do_attach_many(builder: B, children: I) -> B;
}
Expand description

Marker/behavior for adapter-specific multi-child support.

Required Methods§

Source

fn do_attach_many(builder: B, children: I) -> B

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<B, I, C> CanAttachMany<B, I, C> for DefaultAdapter
where B: AttachChildren<C>, I: IntoIterator<Item = C>,