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