ezsp 15.0.0

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
//! Error conversion for the `apis-saltans` driver boundary.
//!
//! EZSP errors retain their concrete value inside the hardware abstraction's
//! backend error variant without discarding their source or display text.

impl From<crate::Error> for apis_saltans_hw::Error {
    fn from(error: crate::Error) -> Self {
        Self::backend(error)
    }
}