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§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 RpcStateChangesInBlockResponse
impl<'de> Deserialize<'de> for RpcStateChangesInBlockResponse
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<&RpcStateChangesInBlockResponse> for RpcStateChangesInBlockResponse
impl From<&RpcStateChangesInBlockResponse> for RpcStateChangesInBlockResponse
Source§fn from(value: &RpcStateChangesInBlockResponse) -> Self
fn from(value: &RpcStateChangesInBlockResponse) -> Self
Converts to this type from the input type.
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