pub struct RpcReceiptResponse {
pub predecessor_id: AccountId,
pub priority: u64,
pub receipt: ReceiptEnumView,
pub receipt_id: CryptoHash,
pub receiver_id: AccountId,
}
Expand description
RpcReceiptResponse
JSON schema
{
"type": "object",
"required": [
"predecessor_id",
"receipt",
"receipt_id",
"receiver_id"
],
"properties": {
"predecessor_id": {
"$ref": "#/components/schemas/AccountId"
},
"priority": {
"default": 0,
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"receipt": {
"$ref": "#/components/schemas/ReceiptEnumView"
},
"receipt_id": {
"$ref": "#/components/schemas/CryptoHash"
},
"receiver_id": {
"$ref": "#/components/schemas/AccountId"
}
}
}
Fields§
§predecessor_id: AccountId
§priority: u64
§receipt: ReceiptEnumView
§receipt_id: CryptoHash
§receiver_id: AccountId
Trait Implementations§
Source§impl Clone for RpcReceiptResponse
impl Clone for RpcReceiptResponse
Source§fn clone(&self) -> RpcReceiptResponse
fn clone(&self) -> RpcReceiptResponse
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 Debug for RpcReceiptResponse
impl Debug for RpcReceiptResponse
Source§impl<'de> Deserialize<'de> for RpcReceiptResponse
impl<'de> Deserialize<'de> for RpcReceiptResponse
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<&RpcReceiptResponse> for RpcReceiptResponse
impl From<&RpcReceiptResponse> for RpcReceiptResponse
Source§fn from(value: &RpcReceiptResponse) -> Self
fn from(value: &RpcReceiptResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcReceiptResponse
impl RefUnwindSafe for RpcReceiptResponse
impl Send for RpcReceiptResponse
impl Sync for RpcReceiptResponse
impl Unpin for RpcReceiptResponse
impl UnwindSafe for RpcReceiptResponse
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