pub trait IntoScriptName {
// Required method
fn into_script_name(self) -> Result<ScriptName>;
// Provided method
fn into_script_name_unchecked(self) -> Result<ScriptName>
where Self: Sized { ... }
}
pub trait IntoScriptName {
// Required method
fn into_script_name(self) -> Result<ScriptName>;
// Provided method
fn into_script_name_unchecked(self) -> Result<ScriptName>
where Self: Sized { ... }
}