pub trait PresentBucketKeyName {
// Required methods
fn bucket_name(&self) -> &str;
fn key(&self) -> &str;
}Expand description
Existing pair of bucket name and key strings.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".