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