pub trait RebindTarget {
// Required method
fn address_of(&self, name: &str) -> Option<ContentAddress>;
}Expand description
The closed world a .prx rebinds INTO — whatever the running system knows,
keyed by name, each at the content address the system holds for it.
Required Methods§
Sourcefn address_of(&self, name: &str) -> Option<ContentAddress>
fn address_of(&self, name: &str) -> Option<ContentAddress>
The content address the running system has for the concept named name,
or None if it does not know that concept.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".