Type Alias S3PathComp

Source
pub type S3PathComp<'i> = Cow<'i, str>;

Aliased Type§

enum S3PathComp<'i> {
    Borrowed(&'i str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'i str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.