ashv2 6.0.2

Implementation of the Asynchronous Serial Host (ASH) protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Status of the `ASHv2` connection.

/// `ASHv2` connection status.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub enum Status {
    #[default]
    /// No connection has been established yet.
    Uninitialized,
    /// A connection has been established.
    Connected,
    /// The connection has been terminated.
    Failed,
}