pub enum BundlerError {
Show 35 variants
InvalidHeaders,
InvalidSignerType,
InvalidPresenceByte(String),
NoBytesLeft,
InvalidTagEncoding,
FsError(String),
InvalidSignature,
InvalidFundingValue,
InvalidAmount,
InvalidKey(String),
InvalidToken(String),
ResponseError(String),
SigningError(String),
RequestError(String),
TxNotFound,
TxStatusNotConfirmed,
ChunkSizeOutOfRange(u64, u64),
PostChunkError(String),
NoSignature,
InvalidDataType,
ArweaveSdkError(Error),
TokenError(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)
InvalidToken(String)
ResponseError(String)
SigningError(String)
RequestError(String)
TxNotFound
TxStatusNotConfirmed
ChunkSizeOutOfRange(u64, u64)
PostChunkError(String)
NoSignature
InvalidDataType
ArweaveSdkError(Error)
TokenError(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 BundlerError
impl Debug for BundlerError
Source§impl Display for BundlerError
impl Display for BundlerError
Source§impl Error for BundlerError
impl Error for BundlerError
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 BundlerError
impl From<BuilderError> for BundlerError
Source§fn from(value: BuilderError) -> Self
fn from(value: BuilderError) -> Self
Converts to this type from the input type.
Source§impl From<BundlerError> for BuilderError
impl From<BundlerError> for BuilderError
Source§fn from(value: BundlerError) -> Self
fn from(value: BundlerError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for BundlerError
impl From<Error> for BundlerError
Source§impl From<Error> for BundlerError
impl From<Error> for BundlerError
Auto Trait Implementations§
impl Freeze for BundlerError
impl !RefUnwindSafe for BundlerError
impl Send for BundlerError
impl Sync for BundlerError
impl Unpin for BundlerError
impl UnsafeUnpin for BundlerError
impl !UnwindSafe for BundlerError
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