Enum starknet_accounts::AccountError
source · pub enum AccountError<S> {
Signing(S),
Provider(ProviderError),
ClassHashCalculation(ComputeClassHashError),
ClassCompression(CompressProgramError),
FeeOutOfRange,
}Variants§
Signing(S)
Provider(ProviderError)
ClassHashCalculation(ComputeClassHashError)
ClassCompression(CompressProgramError)
FeeOutOfRange
Trait Implementations§
source§impl<S: Debug> Debug for AccountError<S>
impl<S: Debug> Debug for AccountError<S>
source§impl<S> Display for AccountError<S>where
S: Display,
impl<S> Display for AccountError<S>where
S: Display,
source§impl<S> Error for AccountError<S>
impl<S> Error for AccountError<S>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<S> !RefUnwindSafe for AccountError<S>
impl<S> Send for AccountError<S>where
S: Send,
impl<S> Sync for AccountError<S>where
S: Sync,
impl<S> Unpin for AccountError<S>where
S: Unpin,
impl<S> !UnwindSafe for AccountError<S>
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