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