1pub trait Named { 2 /// Gets the String representation of the Type of the Component, used for debugging 3 fn name(&self) -> String; 4}