pub trait AccessTierSupport<'a> {
    type O;

    fn with_access_tier(self, access_tier: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors