pub struct RpcStateChangesInBlockByTypeResponse {
pub block_hash: CryptoHash,
pub changes: Vec<StateChangeKindView>,
}
Expand description
RpcStateChangesInBlockByTypeResponse
JSON schema
{
"type": "object",
"required": [
"block_hash",
"changes"
],
"properties": {
"block_hash": {
"$ref": "#/components/schemas/CryptoHash"
},
"changes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StateChangeKindView"
}
}
}
}
Fields§
§block_hash: CryptoHash
§changes: Vec<StateChangeKindView>
Trait Implementations§
Source§impl Clone for RpcStateChangesInBlockByTypeResponse
impl Clone for RpcStateChangesInBlockByTypeResponse
Source§fn clone(&self) -> RpcStateChangesInBlockByTypeResponse
fn clone(&self) -> RpcStateChangesInBlockByTypeResponse
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<'de> Deserialize<'de> for RpcStateChangesInBlockByTypeResponse
impl<'de> Deserialize<'de> for RpcStateChangesInBlockByTypeResponse
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
Source§impl From<&RpcStateChangesInBlockByTypeResponse> for RpcStateChangesInBlockByTypeResponse
impl From<&RpcStateChangesInBlockByTypeResponse> for RpcStateChangesInBlockByTypeResponse
Source§fn from(value: &RpcStateChangesInBlockByTypeResponse) -> Self
fn from(value: &RpcStateChangesInBlockByTypeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcStateChangesInBlockByTypeResponse
impl RefUnwindSafe for RpcStateChangesInBlockByTypeResponse
impl Send for RpcStateChangesInBlockByTypeResponse
impl Sync for RpcStateChangesInBlockByTypeResponse
impl Unpin for RpcStateChangesInBlockByTypeResponse
impl UnwindSafe for RpcStateChangesInBlockByTypeResponse
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