pub trait DynBase { }Expand description
A trait that all other rs-matter dyn traits should extend from.
When feature sync-mutex is disabled, this trait is empty and does not require Send + Sync.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
impl DynBase for ()
impl DynBase for bool
impl<T> DynBase for &Twhere
T: DynBase,
Implementors§
impl DynBase for AlwaysConnected
impl DynBase for NoopWirelessNetCtl
impl DynBase for TestDeviceAttestation
impl<Q> DynBase for WirelessNetCtl<'_, Q>
Available on non-crate feature
sync-mutex only.impl<T> DynBase for NetCtlWithStatusImpl<'_, T>
Available on non-crate feature
sync-mutex only.