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 { ... }
}Required Methods§
fn into_script_name(self) -> Result<ScriptName>
Provided Methods§
fn into_script_name_unchecked(self) -> Result<ScriptName>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".