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