pub enum TestStateError {
Overflow,
Write,
Offset,
Default,
EntryDeleted,
}👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
Expand description
An error that is raised when operating with Seek, Write, Read, or
HasStateEntry trait methods of the TestStateApi type.
Variants§
Overflow
👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
The computation of the new offset would result in an overflow.
Write
👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
An error occurred when writing to the contract state.
Offset
👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
The new offset would be out of bounds of the state.
Default
👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
Some other error occurred.
EntryDeleted
👎Deprecated since 8.1.0: Deprecated in favor of concordium-smart-contract-testing.
The entry has been deleted (via delete_prefix).
Trait Implementations§
source§impl Debug for TestStateError
impl Debug for TestStateError
source§impl Default for TestStateError
impl Default for TestStateError
source§impl From<TestStateError> for ParseError
impl From<TestStateError> for ParseError
source§fn from(_: TestStateError) -> Self
fn from(_: TestStateError) -> Self
Converts to this type from the input type.
source§impl From<TryFromIntError> for TestStateError
impl From<TryFromIntError> for TestStateError
source§fn from(_: TryFromIntError) -> Self
fn from(_: TryFromIntError) -> Self
Converts to this type from the input type.
source§impl PartialEq for TestStateError
impl PartialEq for TestStateError
source§fn eq(&self, other: &TestStateError) -> bool
fn eq(&self, other: &TestStateError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TestStateError
impl StructuralEq for TestStateError
impl StructuralPartialEq for TestStateError
Auto Trait Implementations§
impl RefUnwindSafe for TestStateError
impl Send for TestStateError
impl Sync for TestStateError
impl Unpin for TestStateError
impl UnwindSafe for TestStateError
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