pub struct RpcHashMap {
pub salt: String,
pub batch: String,
pub procedures: HashMap<String, String>,
}Expand description
RPC hash map loaded from build output. Maps hashed names back to original procedure names.
Fields§
§salt: String§batch: String§procedures: HashMap<String, String>Implementations§
Source§impl RpcHashMap
impl RpcHashMap
Sourcepub fn reverse_lookup(&self) -> HashMap<String, String>
pub fn reverse_lookup(&self) -> HashMap<String, String>
Build a reverse lookup: hash -> original name
Trait Implementations§
Source§impl Clone for RpcHashMap
impl Clone for RpcHashMap
Source§fn clone(&self) -> RpcHashMap
fn clone(&self) -> RpcHashMap
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 RpcHashMap
impl Debug for RpcHashMap
Source§impl<'de> Deserialize<'de> for RpcHashMap
impl<'de> Deserialize<'de> for RpcHashMap
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
Auto Trait Implementations§
impl Freeze for RpcHashMap
impl RefUnwindSafe for RpcHashMap
impl Send for RpcHashMap
impl Sync for RpcHashMap
impl Unpin for RpcHashMap
impl UnsafeUnpin for RpcHashMap
impl UnwindSafe for RpcHashMap
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