pub enum TcState {
Idle,
Creating,
Active,
}Expand description
Transport connection state (EN 50221 §A.4, Figures 6/7).
Variants§
Idle
No connection; nothing sent.
Creating
Create_T_C sent, awaiting C_T_C_Reply.
Active
Connection up; polling/exchanging data.
Trait Implementations§
impl Copy for TcState
impl Eq for TcState
impl StructuralPartialEq for TcState
Auto Trait Implementations§
impl Freeze for TcState
impl RefUnwindSafe for TcState
impl Send for TcState
impl Sync for TcState
impl Unpin for TcState
impl UnsafeUnpin for TcState
impl UnwindSafe for TcState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more