s3_path

Macro s3_path 

Source
macro_rules! s3_path {
    ($($component:expr),* $(,)?) => { ... };
}
Expand description

Var-arg macro to create an S3Path, borrowing from the given string literals.

use s3_path::s3_path;

let path = s3_path!("foo", "bar").unwrap();