pub trait EndpointExt {
// Required methods
async fn monitored_connect(
self,
_: impl Into<String>,
_: TcpConfig,
) -> Result<Channel, Error>;
fn monitored_connect_lazy(
self,
_: impl Into<String>,
_: TcpConfig,
) -> Channel;
}
Required Methods§
async fn monitored_connect( self, _: impl Into<String>, _: TcpConfig, ) -> Result<Channel, Error>
fn monitored_connect_lazy(self, _: impl Into<String>, _: TcpConfig) -> Channel
Object Safety§
This trait is not object safe.