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();macro_rules! s3_path {
($($component:expr),*) => { ... };
}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();