pub trait Resource: Any + Debug + Send + Sync + 'static { }
A trait representing a resource. It extends Any to allow for downcasting.
Any