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