pub trait StringOrInt { // Required method fn to_object(self) -> Object; }
A trait implemented by strings and integers.