pub trait GetRustEdition {
type Error;
// Required method
fn get_rust_edition(&self) -> Result<Option<String>, Self::Error>;
}pub trait GetRustEdition {
type Error;
// Required method
fn get_rust_edition(&self) -> Result<Option<String>, Self::Error>;
}