pub struct TestRegisterView<C> { /* private fields */ }Expand description
Wrapper to test with a RegisterView.
Trait Implementations§
Source§impl<C> ClonableView for TestRegisterView<C>
impl<C> ClonableView for TestRegisterView<C>
Source§fn clone_unchecked(&mut self) -> Result<Self, ViewError>
fn clone_unchecked(&mut self) -> Result<Self, ViewError>
Creates a clone of this view, sharing the underlying storage context but prone to
data races which can corrupt the view state.
Source§impl<C> RootView for TestRegisterView<C>where
Self: View,
impl<C> RootView for TestRegisterView<C>where
Self: View,
Source§impl TestView for TestRegisterView<MemoryContext<()>>
impl TestView for TestRegisterView<MemoryContext<()>>
Source§async fn stage_initial_changes(&mut self) -> Result<Self::State, ViewError>
async fn stage_initial_changes(&mut self) -> Result<Self::State, ViewError>
Performs some initial changes to the view, staging them, and returning a representation of
the view’s state.
Source§async fn stage_changes_to_be_discarded(
&mut self,
) -> Result<Self::State, ViewError>
async fn stage_changes_to_be_discarded( &mut self, ) -> Result<Self::State, ViewError>
Stages some changes to the view that won’t be persisted during the test. Read more
Source§impl<C> View for TestRegisterView<C>
impl<C> View for TestRegisterView<C>
Source§const NUM_INIT_KEYS: usize = <RegisterView<C, u8> as linera_views::views::View>::NUM_INIT_KEYS
const NUM_INIT_KEYS: usize = <RegisterView<C, u8> as linera_views::views::View>::NUM_INIT_KEYS
The number of keys used for the initialization
Source§fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError>
fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError>
Creates the keys needed for loading the view
Source§fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError>
fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError>
Loads a view from the values
Source§fn rollback(&mut self)
fn rollback(&mut self)
Discards all pending changes. After that
flush should have no effect to storage.Source§async fn has_pending_changes(&self) -> bool
async fn has_pending_changes(&self) -> bool
Returns
true if flushing this view would result in changes to the persistent storage.Source§fn pre_save(&self, batch: &mut Batch) -> Result<bool, ViewError>
fn pre_save(&self, batch: &mut Batch) -> Result<bool, ViewError>
Computes the batch of operations to persist changes to storage without modifying the view.
Crash-resistant storage implementations accumulate the desired changes in the
batch variable.
The returned boolean indicates whether the operation removes the view or not.Source§fn post_save(&mut self)
fn post_save(&mut self)
Updates the view state after the batch has been executed in the database.
This should be called after
pre_save and after the batch has been successfully written to storage.
This leaves the view in a clean state with no pending changes. Read moreAuto Trait Implementations§
impl<C> Freeze for TestRegisterView<C>where
C: Freeze,
impl<C> RefUnwindSafe for TestRegisterView<C>where
C: RefUnwindSafe,
impl<C> Send for TestRegisterView<C>where
C: Send,
impl<C> Sync for TestRegisterView<C>where
C: Sync,
impl<C> Unpin for TestRegisterView<C>where
C: Unpin,
impl<C> UnsafeUnpin for TestRegisterView<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for TestRegisterView<C>where
C: UnwindSafe,
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
Source§fn read<'instance>(
&self,
instance: &'instance &mut I,
location: GuestPointer,
length: u32,
) -> Result<Cow<'instance, [u8]>, RuntimeError>
fn read<'instance>( &self, instance: &'instance &mut I, location: GuestPointer, length: u32, ) -> Result<Cow<'instance, [u8]>, RuntimeError>
Reads length bytes from memory from the provided location.
Source§fn write(
&mut self,
instance: &mut &mut I,
location: GuestPointer,
bytes: &[u8],
) -> Result<(), RuntimeError>
fn write( &mut self, instance: &mut &mut I, location: GuestPointer, bytes: &[u8], ) -> Result<(), RuntimeError>
Writes the bytes to memory at the provided location.