//! Interface for any factory to ever exist.
usestd::fmt::Debug;usecrate::private::cast::{CastFrom, CastFromArc};/// Interface for any factory to ever exist.
pubtraitAnyFactory: CastFrom + Debug {}/// Interface for any threadsafe factory to ever exist.
pubtraitAnyThreadsafeFactory: CastFromArc + Debug {}