pub enum InterfaceError {
InternalError(String),
InterfaceError(String),
InvalidInterface(String),
}Expand description
An error from the interface.
Variants§
InternalError(String)
An internal error.
InterfaceError(String)
An error with the interface.
InvalidInterface(String)
The interface is invalid per the expected protocol and should be disconnected from.
Trait Implementations§
Source§impl Clone for InterfaceError
impl Clone for InterfaceError
Source§fn clone(&self) -> InterfaceError
fn clone(&self) -> InterfaceError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InterfaceError
impl Debug for InterfaceError
Source§impl Display for InterfaceError
impl Display for InterfaceError
Source§impl Error for InterfaceError
impl Error for InterfaceError
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()
Source§impl From<InterfaceError> for FeeError
impl From<InterfaceError> for FeeError
Source§fn from(err: InterfaceError) -> Self
fn from(err: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl From<InterfaceError> for PublishTransactionError
impl From<InterfaceError> for PublishTransactionError
Source§fn from(err: InterfaceError) -> Self
fn from(err: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl From<InterfaceError> for TransactionsError
impl From<InterfaceError> for TransactionsError
Source§fn from(err: InterfaceError) -> Self
fn from(err: InterfaceError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterfaceError
impl PartialEq for InterfaceError
impl Eq for InterfaceError
impl StructuralPartialEq for InterfaceError
Auto Trait Implementations§
impl Freeze for InterfaceError
impl RefUnwindSafe for InterfaceError
impl Send for InterfaceError
impl Sync for InterfaceError
impl Unpin for InterfaceError
impl UnsafeUnpin for InterfaceError
impl UnwindSafe for InterfaceError
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