pub trait WithUserClient<'a, C, D, USER>:
Debug
+ Send
+ Sync{
// Required method
fn with_user_client<IntoCowStr>(&'a self, user_name: IntoCowStr) -> USER
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn with_user_client<IntoCowStr>(&'a self, user_name: IntoCowStr) -> USER
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.