Trait clonablechild::ChildExt [] [src]

pub trait ChildExt {
    fn into_clonable(self) -> ClonableChild;
}

A trait that extends Child with a method to convert it into a ClonableChild.

Required Methods

Consumes the child and wraps it in a ClonableChild. Results in an object with a similar API, but that can be cloned.

Implementors