pub struct SighashCacheKey { /* private fields */ }Expand description
Per-block sighash cache: (prevout, code_hash, sighash_byte) -> hash. Core-style. Uses hash of scriptCode instead of owned Vec to avoid allocation on insert.
Trait Implementations§
Source§impl Clone for SighashCacheKey
impl Clone for SighashCacheKey
Source§fn clone(&self) -> SighashCacheKey
fn clone(&self) -> SighashCacheKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SighashCacheKey
impl Debug for SighashCacheKey
Source§impl Hash for SighashCacheKey
Available on crate feature production only.
impl Hash for SighashCacheKey
Available on crate feature
production only.Source§impl PartialEq for SighashCacheKey
impl PartialEq for SighashCacheKey
Source§fn eq(&self, other: &SighashCacheKey) -> bool
fn eq(&self, other: &SighashCacheKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SighashCacheKey
impl Eq for SighashCacheKey
impl StructuralPartialEq for SighashCacheKey
Auto Trait Implementations§
impl Freeze for SighashCacheKey
impl RefUnwindSafe for SighashCacheKey
impl Send for SighashCacheKey
impl Sync for SighashCacheKey
impl Unpin for SighashCacheKey
impl UnsafeUnpin for SighashCacheKey
impl UnwindSafe for SighashCacheKey
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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