Trait IntoObjectClient

Source
pub trait IntoObjectClient<'ctx>: Sized {
    // Required method
    fn create_client(ctx: &'ctx ContextInternal, key: String) -> Self;
}
Expand description

Trait used by codegen to use the object client.

Required Methods§

Source

fn create_client(ctx: &'ctx ContextInternal, key: String) -> Self

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.

Implementors§