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