macro_rules! s3_path { ($($component:expr),* $(,)?) => { ... }; }
Var-arg macro to create an S3Path, borrowing from the given string literals.
S3Path
use s3_path::s3_path; let path = s3_path!("foo", "bar").unwrap();