Struct concordium_std::test_infrastructure::ContractStateTest[][src]

pub struct ContractStateTest<T> {
    pub cursor: Cursor<T>,
}

Contract state for testing, mimicking the operations the scheduler allows, including the limit on the size of the maximum size of the contract state.

Fields

cursor: Cursor<T>

Trait Implementations

impl<T: AsMut<Vec<u8>> + AsMut<[u8]> + AsRef<[u8]>> HasContractState<ContractStateError> for ContractStateTest<T>[src]

type ContractStateData = T

impl<T: AsRef<[u8]>> Read for ContractStateTest<T>[src]

impl<T: AsRef<[u8]>> Seek for ContractStateTest<T>[src]

type Err = ContractStateError

impl<T: AsMut<[u8]>> Write for ContractStateTest<T>[src]

type Err = ContractStateError

Auto Trait Implementations

impl<T> RefUnwindSafe for ContractStateTest<T> where
    T: RefUnwindSafe

impl<T> Send for ContractStateTest<T> where
    T: Send

impl<T> Sync for ContractStateTest<T> where
    T: Sync

impl<T> Unpin for ContractStateTest<T> where
    T: Unpin

impl<T> UnwindSafe for ContractStateTest<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<R, T> Get<T> for R where
    T: Deserial,
    R: Read
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.