Type Alias forensic_rs::field::Text

source ·
pub type Text = Cow<'static, str>;

Aliased Type§

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

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.