pub enum RpcLightClientProofError {
UnknownBlock(Map<String, Value>),
InconsistentState {
execution_outcome_shard_id: ShardId,
number_or_shards: u32,
},
NotConfirmed {
transaction_or_receipt_id: CryptoHash,
},
UnknownTransactionOrReceipt {
transaction_or_receipt_id: CryptoHash,
},
UnavailableShard {
shard_id: ShardId,
transaction_or_receipt_id: CryptoHash,
},
InternalError {
error_message: String,
},
}Expand description
RpcLightClientProofError
JSON schema
{
"oneOf": [
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object"
},
"name": {
"type": "string",
"enum": [
"UNKNOWN_BLOCK"
]
}
}
},
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object",
"required": [
"execution_outcome_shard_id",
"number_or_shards"
],
"properties": {
"execution_outcome_shard_id": {
"$ref": "#/components/schemas/ShardId"
},
"number_or_shards": {
"type": "integer",
"format": "uint",
"minimum": 0.0
}
}
},
"name": {
"type": "string",
"enum": [
"INCONSISTENT_STATE"
]
}
}
},
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object",
"required": [
"transaction_or_receipt_id"
],
"properties": {
"transaction_or_receipt_id": {
"$ref": "#/components/schemas/CryptoHash"
}
}
},
"name": {
"type": "string",
"enum": [
"NOT_CONFIRMED"
]
}
}
},
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object",
"required": [
"transaction_or_receipt_id"
],
"properties": {
"transaction_or_receipt_id": {
"$ref": "#/components/schemas/CryptoHash"
}
}
},
"name": {
"type": "string",
"enum": [
"UNKNOWN_TRANSACTION_OR_RECEIPT"
]
}
}
},
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object",
"required": [
"shard_id",
"transaction_or_receipt_id"
],
"properties": {
"shard_id": {
"$ref": "#/components/schemas/ShardId"
},
"transaction_or_receipt_id": {
"$ref": "#/components/schemas/CryptoHash"
}
}
},
"name": {
"type": "string",
"enum": [
"UNAVAILABLE_SHARD"
]
}
}
},
{
"type": "object",
"required": [
"info",
"name"
],
"properties": {
"info": {
"type": "object",
"required": [
"error_message"
],
"properties": {
"error_message": {
"type": "string"
}
}
},
"name": {
"type": "string",
"enum": [
"INTERNAL_ERROR"
]
}
}
}
]
}Variants§
UnknownBlock(Map<String, Value>)
InconsistentState
NotConfirmed
Fields
§
transaction_or_receipt_id: CryptoHashUnknownTransactionOrReceipt
Fields
§
transaction_or_receipt_id: CryptoHashInternalError
Trait Implementations§
Source§impl Clone for RpcLightClientProofError
impl Clone for RpcLightClientProofError
Source§fn clone(&self) -> RpcLightClientProofError
fn clone(&self) -> RpcLightClientProofError
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 RpcLightClientProofError
impl Debug for RpcLightClientProofError
Source§impl<'de> Deserialize<'de> for RpcLightClientProofError
impl<'de> Deserialize<'de> for RpcLightClientProofError
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<&RpcLightClientProofError> for RpcLightClientProofError
impl From<&RpcLightClientProofError> for RpcLightClientProofError
Source§fn from(value: &RpcLightClientProofError) -> Self
fn from(value: &RpcLightClientProofError) -> Self
Converts to this type from the input type.
Source§impl From<RpcLightClientProofError> for ErrorWrapperForRpcLightClientProofError
impl From<RpcLightClientProofError> for ErrorWrapperForRpcLightClientProofError
Source§fn from(value: RpcLightClientProofError) -> Self
fn from(value: RpcLightClientProofError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcLightClientProofError
impl RefUnwindSafe for RpcLightClientProofError
impl Send for RpcLightClientProofError
impl Sync for RpcLightClientProofError
impl Unpin for RpcLightClientProofError
impl UnwindSafe for RpcLightClientProofError
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