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