pub struct BlockTransactionRequest {
pub network_identifier: NetworkIdentifier,
pub block_identifier: BlockIdentifier,
pub transaction_identifier: TransactionIdentifier,
}Expand description
BlockTransactionRequest : A BlockTransactionRequest is used to fetch a Transaction included in a block that is not returned in a BlockResponse.
Fields§
§network_identifier: NetworkIdentifier§block_identifier: BlockIdentifier§transaction_identifier: TransactionIdentifierImplementations§
Source§impl BlockTransactionRequest
impl BlockTransactionRequest
Sourcepub fn new(
network_identifier: NetworkIdentifier,
block_identifier: BlockIdentifier,
transaction_identifier: TransactionIdentifier,
) -> BlockTransactionRequest
pub fn new( network_identifier: NetworkIdentifier, block_identifier: BlockIdentifier, transaction_identifier: TransactionIdentifier, ) -> BlockTransactionRequest
A BlockTransactionRequest is used to fetch a Transaction included in a block that is not returned in a BlockResponse.
Trait Implementations§
Source§impl Clone for BlockTransactionRequest
impl Clone for BlockTransactionRequest
Source§fn clone(&self) -> BlockTransactionRequest
fn clone(&self) -> BlockTransactionRequest
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 BlockTransactionRequest
impl Debug for BlockTransactionRequest
Source§impl Default for BlockTransactionRequest
impl Default for BlockTransactionRequest
Source§fn default() -> BlockTransactionRequest
fn default() -> BlockTransactionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlockTransactionRequest
impl<'de> Deserialize<'de> for BlockTransactionRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BlockTransactionRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BlockTransactionRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BlockTransactionRequest
impl PartialEq for BlockTransactionRequest
Source§impl Serialize for BlockTransactionRequest
impl Serialize for BlockTransactionRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for BlockTransactionRequest
impl StructuralPartialEq for BlockTransactionRequest
Auto Trait Implementations§
impl Freeze for BlockTransactionRequest
impl RefUnwindSafe for BlockTransactionRequest
impl Send for BlockTransactionRequest
impl Sync for BlockTransactionRequest
impl Unpin for BlockTransactionRequest
impl UnwindSafe for BlockTransactionRequest
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