pub trait ProxyValidCmdRequests<P>: Sizedwhere
P: TLVBuilderParent,{
// Required method
fn proxy_valid_inv(self) -> ProxyValidCmdRequestsView<P>;
}Expand description
IM-client extension trait for the ProxyValid cluster’s commands. use this trait to call .proxy_valid_inv() on a crate::im::CmdDataArrayBuilder; the returned ProxyValidCmdRequestsView exposes one method per command (cluster-prefix-free). .end() on the view closes the wrapped array.
Required Methods§
fn proxy_valid_inv(self) -> ProxyValidCmdRequestsView<P>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".