pub trait LogoConvertible {
// Required methods
fn to_logo(&self) -> LogoValue;
fn from_logo(value: LogoValue) -> Result<Self, String>
where Self: Sized;
}pub trait LogoConvertible {
// Required methods
fn to_logo(&self) -> LogoValue;
fn from_logo(value: LogoValue) -> Result<Self, String>
where Self: Sized;
}