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