pub trait FactoryMethod<T> { // Required method fn create(&self) -> T; }
! Defines Factory Method functionality
! Create instance from Factory