pub struct NonContextualTransactionVerifier<'a> { /* private fields */ }
Expand description
Context-independent verification checks for transaction
Basic checks that don’t depend on any context Contains:
- Check for version
- Check for size
- Check inputs and output empty
- Check for duplicate deps
- Check for whether outputs match data
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NonContextualTransactionVerifier<'a>
impl<'a> RefUnwindSafe for NonContextualTransactionVerifier<'a>
impl<'a> Send for NonContextualTransactionVerifier<'a>
impl<'a> Sync for NonContextualTransactionVerifier<'a>
impl<'a> Unpin for NonContextualTransactionVerifier<'a>
impl<'a> UnwindSafe for NonContextualTransactionVerifier<'a>
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<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 more