Type Alias SqlStr

Source
pub type SqlStr = Cow<'static, str>;

Aliased Type§

enum SqlStr {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.