pub enum Error {
InvalidMutlipartLength(usize),
InvalidTopic(usize, [u8; 9]),
InvalidDataLength(usize),
InvalidSequenceLength(usize),
InvalidSequenceMessageLength(usize),
InvalidSequenceMessageLabel(u8),
Invalid256BitHashLength(usize),
BitcoinDeserialization(Error),
Zmq(Error),
MonitorMessage(MonitorMessageError),
}
Variants§
InvalidMutlipartLength(usize)
InvalidTopic(usize, [u8; 9])
InvalidDataLength(usize)
InvalidSequenceLength(usize)
InvalidSequenceMessageLength(usize)
InvalidSequenceMessageLabel(u8)
Invalid256BitHashLength(usize)
BitcoinDeserialization(Error)
Zmq(Error)
MonitorMessage(MonitorMessageError)
Implementations§
Source§impl Error
impl Error
Sourcepub fn invalid_topic_data(&self) -> Option<(&[u8], usize)>
pub fn invalid_topic_data(&self) -> Option<(&[u8], usize)>
Returns the (invalid) topic as a byte slice (as this might not always be valid UTF-8). If
this error is not an Error::InvalidTopic
, None
is returned. The real length is also
returned, if this is higher that the length of the slice, the data was truncated to fit
directly in the object, instead of with a heap allocation.
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()
Source§impl From<SocketError> for Error
Available on crate feature async
only.
impl From<SocketError> for Error
Available on crate feature
async
only.Source§fn from(value: SocketError) -> Self
fn from(value: SocketError) -> Self
Converts to this type from the input type.
Source§impl From<SubscribeError> for Error
Available on crate feature async
only.
impl From<SubscribeError> for Error
Available on crate feature
async
only.Source§fn from(value: SubscribeError) -> Self
fn from(value: SubscribeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin 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