google_apis_common

Trait Connector

source
pub trait Connector:
    Connect
    + Clone
    + Send
    + Sync
    + 'static { }
Expand description

A connector.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Connector for T
where T: Connect + Clone + Send + Sync + 'static,