Skip to main content

PresentBucketKeyName

Trait PresentBucketKeyName 

Source
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§

Source

fn bucket_name(&self) -> &str

Gets bucket name.

Source

fn key(&self) -> &str

Gets key.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'b> PresentBucketKeyName for Present<BucketKey<'b>>

Source§

fn bucket_name(&self) -> &str

Source§

fn key(&self) -> &str

Implementors§