pub type S3PathComp<'i> = Cow<'i, str>;
enum S3PathComp<'i> { Borrowed(&'i str), Owned(String), }
Borrowed data.
Owned data.