pub struct RpcStateChangesInBlockResponse {
pub block_hash: CryptoHash,
pub changes: Vec<StateChangeWithCauseView>,
}Expand description
RpcStateChangesInBlockResponse
JSON schema
{
"type": "object",
"required": [
"block_hash",
"changes"
],
"properties": {
"block_hash": {
"$ref": "#/components/schemas/CryptoHash"
},
"changes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StateChangeWithCauseView"
}
}
}
}Fields§
§block_hash: CryptoHash§changes: Vec<StateChangeWithCauseView>Trait Implementations§
Source§impl Clone for RpcStateChangesInBlockResponse
impl Clone for RpcStateChangesInBlockResponse
Source§fn clone(&self) -> RpcStateChangesInBlockResponse
fn clone(&self) -> RpcStateChangesInBlockResponse
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 RpcStateChangesInBlockResponse
impl<'de> Deserialize<'de> for RpcStateChangesInBlockResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RpcStateChangesInBlockResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RpcStateChangesInBlockResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&RpcStateChangesInBlockResponse> for RpcStateChangesInBlockResponse
impl From<&RpcStateChangesInBlockResponse> for RpcStateChangesInBlockResponse
Source§fn from(
value: &RpcStateChangesInBlockResponse,
) -> RpcStateChangesInBlockResponse
fn from( value: &RpcStateChangesInBlockResponse, ) -> RpcStateChangesInBlockResponse
Converts to this type from the input type.
Source§impl Serialize for RpcStateChangesInBlockResponse
impl Serialize for RpcStateChangesInBlockResponse
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 RpcStateChangesInBlockResponse
impl RefUnwindSafe for RpcStateChangesInBlockResponse
impl Send for RpcStateChangesInBlockResponse
impl Sync for RpcStateChangesInBlockResponse
impl Unpin for RpcStateChangesInBlockResponse
impl UnwindSafe for RpcStateChangesInBlockResponse
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