pub trait IntoScriptName {
    fn into_script_name(self) -> Result<ScriptName>;

    fn into_script_name_unchecked(self) -> Result<ScriptName>
    where
        Self: Sized
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors