Trait opentelemetry_stackdriver::Authorizer[][src]

pub trait Authorizer: Sync + Send + 'static {
    type Error: Display + Debug + Send;
    fn project_id(&self) -> &str;
fn authorize<'life0, 'life1, 'async_trait, T: Send + Sync>(
        &'life0 self,
        request: &'life1 mut Request<T>
    ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
    where
        T: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Associated Types

Required methods

Implementors