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