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§const fn clone_from(&mut self, source: &Self)
const 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<RpcStateChangesInBlockByTypeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RpcStateChangesInBlockByTypeResponse, <__D as Deserializer<'de>>::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,
) -> RpcStateChangesInBlockByTypeResponse
fn from( value: &RpcStateChangesInBlockByTypeResponse, ) -> RpcStateChangesInBlockByTypeResponse
Converts to this type from the input type.
Source§impl Serialize for RpcStateChangesInBlockByTypeResponse
impl Serialize for RpcStateChangesInBlockByTypeResponse
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
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