pub struct TcError {
pub t_c_id: u8,
pub error_code: u8,
}Expand description
T_C_Error (Table A.10, length=2): an error on a transport connection.
Fields§
§t_c_id: u8t_c_id.
error_code: u8error_code (Table A.11: 1 = no transport connections available).
Trait Implementations§
impl Copy for TcError
impl Eq for TcError
Source§impl Serialize for TcError
impl Serialize for TcError
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for TcError
Auto Trait Implementations§
impl Freeze for TcError
impl RefUnwindSafe for TcError
impl Send for TcError
impl Sync for TcError
impl Unpin for TcError
impl UnsafeUnpin for TcError
impl UnwindSafe for TcError
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