pub enum RtlError {
Show 13 variants
EventTypeMustBeEnum {
type_name: String,
},
ReplyPrefixMismatches,
ReplyIsMissing,
ReplyIsAmbiguous,
ReplyCodeIsMissing,
ReplyHasError(ErrorReplyReason, Vec<u8>),
ProgramCodeIsNotFound,
ProgramIsNotFound,
ReplyHasErrorString(String),
EventNameIsNotFound,
EventIsNotFound,
EventPrefixMismatches,
InvocationPrefixMismatches,
}Variants§
EventTypeMustBeEnum
ReplyPrefixMismatches
ReplyIsMissing
ReplyIsAmbiguous
ReplyCodeIsMissing
ReplyHasError(ErrorReplyReason, Vec<u8>)
ProgramCodeIsNotFound
ProgramIsNotFound
ReplyHasErrorString(String)
EventNameIsNotFound
EventIsNotFound
EventPrefixMismatches
InvocationPrefixMismatches
Trait Implementations§
Source§impl Error for RtlError
impl Error for RtlError
1.30.0 · 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()
impl Eq for RtlError
impl StructuralPartialEq for RtlError
Auto Trait Implementations§
impl Freeze for RtlError
impl RefUnwindSafe for RtlError
impl Send for RtlError
impl Sync for RtlError
impl Unpin for RtlError
impl UnwindSafe for RtlError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.