pub enum BundlrError {
Show 35 variants
InvalidHeaders,
InvalidSignerType,
InvalidPresenceByte(String),
NoBytesLeft,
InvalidTagEncoding,
FsError(String),
InvalidSignature,
InvalidFundingValue,
InvalidAmount,
InvalidKey(String),
InvalidCurrency(String),
ResponseError(String),
SigningError(String),
RequestError(String),
TxNotFound,
TxStatusNotConfirmed,
ChunkSizeOutOfRange(u64, u64),
PostChunkError(String),
NoSignature,
InvalidDataType,
ArweaveSdkError(Error),
CurrencyError(String),
BytesError(String),
TypeParseError(String),
ParseError(String),
UploadError(String),
Unknown(String),
Unsupported(String),
ED25519Error(Error),
Secp256k1Error(Error),
Base64Error(String),
IoError(Error),
BuilderError(BuilderError),
Eip712Error(Eip712Error),
RecoveryError(RecoveryError),
}Variants§
InvalidHeaders
InvalidSignerType
InvalidPresenceByte(String)
NoBytesLeft
InvalidTagEncoding
FsError(String)
InvalidSignature
InvalidFundingValue
InvalidAmount
InvalidKey(String)
InvalidCurrency(String)
ResponseError(String)
SigningError(String)
RequestError(String)
TxNotFound
TxStatusNotConfirmed
ChunkSizeOutOfRange(u64, u64)
PostChunkError(String)
NoSignature
InvalidDataType
ArweaveSdkError(Error)
CurrencyError(String)
BytesError(String)
TypeParseError(String)
ParseError(String)
UploadError(String)
Unknown(String)
Unsupported(String)
ED25519Error(Error)
Secp256k1Error(Error)
Base64Error(String)
IoError(Error)
BuilderError(BuilderError)
Eip712Error(Eip712Error)
RecoveryError(RecoveryError)
Trait Implementations§
Source§impl Debug for BundlrError
impl Debug for BundlrError
Source§impl Display for BundlrError
impl Display for BundlrError
Source§impl Error for BundlrError
impl Error for BundlrError
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<BuilderError> for BundlrError
impl From<BuilderError> for BundlrError
Source§fn from(value: BuilderError) -> Self
fn from(value: BuilderError) -> Self
Converts to this type from the input type.
Source§impl From<BundlrError> for BuilderError
impl From<BundlrError> for BuilderError
Source§fn from(value: BundlrError) -> Self
fn from(value: BundlrError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for BundlrError
impl From<Error> for BundlrError
Source§impl From<Error> for BundlrError
impl From<Error> for BundlrError
Auto Trait Implementations§
impl Freeze for BundlrError
impl !RefUnwindSafe for BundlrError
impl Send for BundlrError
impl Sync for BundlrError
impl Unpin for BundlrError
impl !UnwindSafe for BundlrError
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