#[non_exhaustive]pub enum XRPLCoreException {
XRPLAddressCodecError(XRPLAddressCodecException),
XRPLBinaryCodecError(XRPLBinaryCodecException),
XRPLKeypairsError(XRPLKeypairsException),
SerdeJsonError(XRPLSerdeJsonError),
XRPLUtilsError(String),
FromHexError(FromHexError),
ISOCodeError(ISOCodeException),
Bs58Error(Error),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
XRPLAddressCodecError(XRPLAddressCodecException)
XRPLBinaryCodecError(XRPLBinaryCodecException)
XRPLKeypairsError(XRPLKeypairsException)
SerdeJsonError(XRPLSerdeJsonError)
XRPLUtilsError(String)
FromHexError(FromHexError)
ISOCodeError(ISOCodeException)
Bs58Error(Error)
Trait Implementations§
Source§impl Debug for XRPLCoreException
impl Debug for XRPLCoreException
Source§impl Display for XRPLCoreException
impl Display for XRPLCoreException
Source§impl Error for XRPLCoreException
impl Error for XRPLCoreException
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<Error> for XRPLCoreException
impl From<Error> for XRPLCoreException
Source§impl From<FromHexError> for XRPLCoreException
impl From<FromHexError> for XRPLCoreException
Source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
Source§impl From<ISOCodeException> for XRPLCoreException
impl From<ISOCodeException> for XRPLCoreException
Source§fn from(source: ISOCodeException) -> Self
fn from(source: ISOCodeException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLAddressCodecException> for XRPLCoreException
impl From<XRPLAddressCodecException> for XRPLCoreException
Source§fn from(source: XRPLAddressCodecException) -> Self
fn from(source: XRPLAddressCodecException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLBinaryCodecException> for XRPLCoreException
impl From<XRPLBinaryCodecException> for XRPLCoreException
Source§fn from(source: XRPLBinaryCodecException) -> Self
fn from(source: XRPLBinaryCodecException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLCoreException> for XRPLHelperException
impl From<XRPLCoreException> for XRPLHelperException
Source§fn from(source: XRPLCoreException) -> Self
fn from(source: XRPLCoreException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLCoreException> for XRPLTransactionException
impl From<XRPLCoreException> for XRPLTransactionException
Source§fn from(source: XRPLCoreException) -> Self
fn from(source: XRPLCoreException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLCoreException> for XRPLWalletException
impl From<XRPLCoreException> for XRPLWalletException
Source§fn from(source: XRPLCoreException) -> Self
fn from(source: XRPLCoreException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLHashException> for XRPLCoreException
impl From<XRPLHashException> for XRPLCoreException
Source§fn from(error: XRPLHashException) -> Self
fn from(error: XRPLHashException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLKeypairsException> for XRPLCoreException
impl From<XRPLKeypairsException> for XRPLCoreException
Source§fn from(source: XRPLKeypairsException) -> Self
fn from(source: XRPLKeypairsException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLSerdeJsonError> for XRPLCoreException
impl From<XRPLSerdeJsonError> for XRPLCoreException
Source§fn from(source: XRPLSerdeJsonError) -> Self
fn from(source: XRPLSerdeJsonError) -> Self
Converts to this type from the input type.
Source§impl From<XRPLSerializeArrayException> for XRPLCoreException
impl From<XRPLSerializeArrayException> for XRPLCoreException
Source§fn from(error: XRPLSerializeArrayException) -> Self
fn from(error: XRPLSerializeArrayException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLSerializeMapException> for XRPLCoreException
impl From<XRPLSerializeMapException> for XRPLCoreException
Source§fn from(error: XRPLSerializeMapException) -> Self
fn from(error: XRPLSerializeMapException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLTypeException> for XRPLCoreException
impl From<XRPLTypeException> for XRPLCoreException
Source§fn from(error: XRPLTypeException) -> Self
fn from(error: XRPLTypeException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLVectorException> for XRPLCoreException
impl From<XRPLVectorException> for XRPLCoreException
Source§fn from(error: XRPLVectorException) -> Self
fn from(error: XRPLVectorException) -> Self
Converts to this type from the input type.
Source§impl From<XRPLXChainBridgeException> for XRPLCoreException
impl From<XRPLXChainBridgeException> for XRPLCoreException
Source§fn from(error: XRPLXChainBridgeException) -> Self
fn from(error: XRPLXChainBridgeException) -> Self
Converts to this type from the input type.
Source§impl PartialEq for XRPLCoreException
impl PartialEq for XRPLCoreException
impl StructuralPartialEq for XRPLCoreException
Auto Trait Implementations§
impl Freeze for XRPLCoreException
impl !RefUnwindSafe for XRPLCoreException
impl Send for XRPLCoreException
impl Sync for XRPLCoreException
impl Unpin for XRPLCoreException
impl !UnwindSafe for XRPLCoreException
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