pub enum OwnedTransactionBuilderError {
TooManyReadSlots,
TooManyWriteSlots,
PayloadTooLarge,
PayloadIsNotMultipleOfU128,
SealTooLarge,
TransactionTooLarge,
}
Expand description
Errors for OwnedTransactionBuilder
Variants§
TooManyReadSlots
Too many read slots
TooManyWriteSlots
Too many write slots
PayloadTooLarge
Payload too large
PayloadIsNotMultipleOfU128
Payload is not a multiple of u128
SealTooLarge
Seal too large
TransactionTooLarge
Transaction too large
Trait Implementations§
Source§impl Debug for OwnedTransactionBuilderError
impl Debug for OwnedTransactionBuilderError
Source§impl Error for OwnedTransactionBuilderError
impl Error for OwnedTransactionBuilderError
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()
Auto Trait Implementations§
impl Freeze for OwnedTransactionBuilderError
impl RefUnwindSafe for OwnedTransactionBuilderError
impl Send for OwnedTransactionBuilderError
impl Sync for OwnedTransactionBuilderError
impl Unpin for OwnedTransactionBuilderError
impl UnwindSafe for OwnedTransactionBuilderError
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