pub struct TraceBlockTransactionsRequest {
pub block_id: BlockId,
}
Expand description
Request for method starknet_traceBlockTransactions
Fields§
§block_id: BlockId
The hash of the requested block, or number (height) of the requested block, or a block tag
Trait Implementations§
source§impl Clone for TraceBlockTransactionsRequest
impl Clone for TraceBlockTransactionsRequest
source§fn clone(&self) -> TraceBlockTransactionsRequest
fn clone(&self) -> TraceBlockTransactionsRequest
Returns a copy 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<'de> Deserialize<'de> for TraceBlockTransactionsRequest
impl<'de> Deserialize<'de> for TraceBlockTransactionsRequest
source§fn deserialize<D>(
deserializer: D
) -> Result<TraceBlockTransactionsRequest, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<TraceBlockTransactionsRequest, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TraceBlockTransactionsRequest
impl PartialEq for TraceBlockTransactionsRequest
source§fn eq(&self, other: &TraceBlockTransactionsRequest) -> bool
fn eq(&self, other: &TraceBlockTransactionsRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TraceBlockTransactionsRequest
impl Serialize for TraceBlockTransactionsRequest
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 TraceBlockTransactionsRequest
impl StructuralPartialEq for TraceBlockTransactionsRequest
Auto Trait Implementations§
impl Freeze for TraceBlockTransactionsRequest
impl RefUnwindSafe for TraceBlockTransactionsRequest
impl Send for TraceBlockTransactionsRequest
impl Sync for TraceBlockTransactionsRequest
impl Unpin for TraceBlockTransactionsRequest
impl UnwindSafe for TraceBlockTransactionsRequest
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<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.