aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/any_factory.rs
blob: 98ec144d4733a98a32c110a54095bab88c14e2cb (plain)
1
2
3
4
5
6
//! Interface for any factory to ever exist.

use crate::libs::intertrait::CastFrom;

/// Interface for any factory to ever exist.
pub trait AnyFactory: CastFrom {}