pub trait Proxied: RawWrapper {
    // Required method
    fn type_info() -> TypeInfo<'static>;

    // Provided method
    fn as_proxy(&self) -> &ProxyRef { ... }
}

Required Methods§

source

fn type_info() -> TypeInfo<'static>

Provided Methods§

source

fn as_proxy(&self) -> &ProxyRef

Implementors§