pub struct TestMempoolAcceptResponse {
pub field: Value,
}Expand description
Response for the TestMempoolAccept RPC method
The result of the mempool acceptance test for each raw transaction in the input array. Returns results for each transaction in the same order they were passed in. Transactions that cannot be fully validated due to failures in other transactions will not contain an ‘allowed’ result.
Fields§
§field: ValueTrait Implementations§
Source§impl Clone for TestMempoolAcceptResponse
impl Clone for TestMempoolAcceptResponse
Source§fn clone(&self) -> TestMempoolAcceptResponse
fn clone(&self) -> TestMempoolAcceptResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 TestMempoolAcceptResponse
impl Debug for TestMempoolAcceptResponse
Source§impl<'de> Deserialize<'de> for TestMempoolAcceptResponse
impl<'de> Deserialize<'de> for TestMempoolAcceptResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TestMempoolAcceptResponse
Auto Trait Implementations§
impl Freeze for TestMempoolAcceptResponse
impl RefUnwindSafe for TestMempoolAcceptResponse
impl Send for TestMempoolAcceptResponse
impl Sync for TestMempoolAcceptResponse
impl Unpin for TestMempoolAcceptResponse
impl UnwindSafe for TestMempoolAcceptResponse
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