pub trait AuthAPI {
    // Required methods
    fn sign<S: AsRef<str>>(&self, object: S, build: &RequestBuilder) -> String;
    fn oss_sign<S: AsRef<str>>(
        &self,
        object: S,
        build: &RequestBuilder
    ) -> String;
}

Required Methods§

source

fn sign<S: AsRef<str>>(&self, object: S, build: &RequestBuilder) -> String

source

fn oss_sign<S: AsRef<str>>(&self, object: S, build: &RequestBuilder) -> String

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a> AuthAPI for OSS