Type Alias SpecString

Source
pub type SpecString = Seq<char>;
Expand description

We use this special alias to tell the exec_spec macro to compile Seq<char> to String instead of Vec<char>.

Aliased Type§

struct SpecString { /* private fields */ }

Trait Implementations§

Source§

impl ExecSpecType for SpecString

Source§

type ExecOwnedType = String

Owned version of the exec type.
Source§

type ExecRefType<'a> = &'a str

Reference version of the exec type.