blob: 887bb61b80f6797271593093f43bb31e6b8ece67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! Interface for any factory to ever exist.
use std::fmt::Debug;
use crate::libs::intertrait::CastFrom;
/// Interface for any factory to ever exist.
pub trait AnyFactory: CastFrom {}
impl Debug for dyn AnyFactory
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result
{
f.write_str("{}")
}
}
|