Struct RuntimeEntry
pub struct RuntimeEntry {
pub address: String,
pub class_hash: String,
pub deployed_at_block: Option<u64>,
pub deployed_tx: Option<String>,
}Expand description
A cached, previously-deployed math-runtime instance.
Fields§
§address: StringHex-encoded deployed contract address.
class_hash: StringHex-encoded class hash (snapshotted at deploy time).
deployed_at_block: Option<u64>Block number at which the UDC deploy was mined.
deployed_tx: Option<String>Hex-encoded UDC deploy transaction hash.
Trait Implementations§
§impl Clone for RuntimeEntry
impl Clone for RuntimeEntry
§fn clone(&self) -> RuntimeEntry
fn clone(&self) -> RuntimeEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for RuntimeEntry
impl Debug for RuntimeEntry
§impl<'de> Deserialize<'de> for RuntimeEntry
impl<'de> Deserialize<'de> for RuntimeEntry
§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
§impl PartialEq for RuntimeEntry
impl PartialEq for RuntimeEntry
§impl Serialize for RuntimeEntry
impl Serialize for RuntimeEntry
impl Eq for RuntimeEntry
impl StructuralPartialEq for RuntimeEntry
Auto Trait Implementations§
impl Freeze for RuntimeEntry
impl RefUnwindSafe for RuntimeEntry
impl Send for RuntimeEntry
impl Sync for RuntimeEntry
impl Unpin for RuntimeEntry
impl UnsafeUnpin for RuntimeEntry
impl UnwindSafe for RuntimeEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.