pub enum Error {
Protocol {
class: u32,
code: u32,
},
Reject {
reason: u8,
},
Abort {
reason: u8,
},
Encoding(String),
Decoding {
offset: usize,
message: String,
},
Transport(Error),
Timeout(Duration),
Segmentation(String),
BufferTooShort {
need: usize,
have: usize,
},
InvalidTag(String),
OutOfRange(String),
}Expand description
Top-level error type for the BACnet library.
Variants§
Protocol
BACnet protocol error response (Clause 20.1.7).
Reject
BACnet reject PDU (Clause 20.1.5).
Abort
BACnet abort PDU (Clause 20.1.6).
Encoding(String)
Error encoding a PDU.
Decoding
Error decoding received data.
Fields
Transport(Error)
Transport-level I/O error.
Timeout(Duration)
Request timed out.
Segmentation(String)
Segmentation assembly error.
BufferTooShort
Buffer too short for the expected data.
InvalidTag(String)
Invalid tag encountered during decode.
OutOfRange(String)
Value out of valid range.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl !UnwindSafe for Error
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